Vidyalelo
C Programming · Q68

Structure and Union

Programming · C Programming · question 68

Q68

What will be the output of the following C code? #include struct p int x; char y; ; typedef struct p* q*; int main() struct p p1[] = 1, 92, 3, 94, 5, 96; q ptr1 = p1; printf("%d ", ptr1->x);

A.
Compile time error
Answer
B.
1
C.
Undefined behaviour
D.
Segmentation fault

Answer: Option A

Solution

Answer: Option A
No explanation is given for this question Let's Discuss on Board