Q. What will be the output of the following statements ?
Code:
int x[4] = {1,2,3}; printf(“%d %d %D”,x[3],x[2],x[1]);
β
Correct Answer: (B)
032
int x[4] = {1,2,3}; printf(“%d %d %D”,x[3],x[2],x[1]);
You must be Logged in to update hint/solution