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