Q37
What will be the output of the following C code? #include struct p struct p *next; int x; ; int main() struct p* p1 = malloc(sizeof(struct p)); p1->x = 1; p1->next = malloc(sizeof(struct p)); printf("%d ", p1->next->x); return 0;
A.
Compile time error
B.
1
C.
Somegarbage value
AnswerD.
0
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board