Question: 40
(Choose 1 answer)
What will be printed when the following code is executed?
A. 48
B. 45
C. 88
D. 85
1
#include <stdio.h>
2
int main()
3日 (
4
5
int a[] (7,4,8,5,9};
int* b=a;
b++;
printf("%d %d", *(b++), *(a+3));
9
10)
getchar();
return 0;