325) Consider the following program fragment.
static char wer[3][4] = {"bag", "let", "bud"};
char(*ptr)[4] = wer;
The possible output of printf ("%d %d" , wer[1] , wer[1] +1); is
Answer is:
362 363
Related C Programming MCQ with Answers
Answer is:
prints e
Answer is:
262 266
Answer is:
the pointers point to elements of the same array
Answer is:
it should be both declared and initialized