1.

Predict the output of the following program: main() { int x[ ]={5,6,7,8,9}; char*a; a=(char *)x; printf(%d,*((int*) a+3)); }

A. 8
B. 5
C. 7
D. Error
Answer» B. 5


Discussion

No Comment Found