324) Consider the following program fragment.
static char wer[3][4] = {"bag", "let", "bud"};
char(*ptr)[4] = wer;
In which of the following cases will the character 't' be printed?
Answer is:
putchar ( * (wer [1] + 2) ) ;
Related C Programming MCQ with Answers
Answer is:
prints e
Answer is:
262 266
Answer is: