Q42
What will be the output of the following C code? #include struct p int x; char y; ; int main() struct p p1[] = 1, 92, 3, 94, 5, 96; struct p *ptr1 = p1; int x = (sizeof(p1) / sizeof(struct p)); printf("%d %d ", ptr1->x, (ptr1 + x - 1)->x);
A.
Compile time error
B.
Undefined behaviour
C.
1 3
D.
1 5
AnswerAnswer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board