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