Q87
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(ptr1)); if (x == 1) printf("%d ", ptr1->x); else printf("false ");
A.
Compile time error
B.
1
C.
false
AnswerD.
Undefined behaviour
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board