C | Advanced Pointer | Question 8
#include <stdio.h> int main() { int a[][3] = {1, 2, 3, 4, 5, 6}; int (*ptr)[3] = a; printf ( "%d %d " , (*ptr)[1], (*ptr)[2]); ++ptr; printf ( "%d %d\n" , (*ptr)[1], (*ptr)[2]); return 0; } |
(A) 2 3 5 6
(B) 2 3 4 5
(C) 4 5 0 0
(D) none of the above
Answer: (A)
Explanation:
Quiz of this Question
Please Login to comment...