Discussion :: Pointers
-
Which of the statements is correct about the program?
#include
int main() { int arr[3][3] = {1, 2, 3, 4}; printf("%d\n", *(*(*(arr)))); return 0; }
Answer : Option D
Explanation :
No answer description available for this question.
Be The First To Comment