327) 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, wer +1); is
Answer is:
262 266
Related C Programming MCQ with Answers
Answer is:
the pointers point to elements of the same array
Answer is:
it should be both declared and initialized
Answer is:
voidPtr = charPtr
Answer is: