Vidyalelo
C Programming · Q55

Structure and Union

Programming · C Programming · question 55

Q55

What will be the output of the following C code? #include struct point int x; int y; ; void foo(struct point*); int main() struct point p1[] = 1, 2, 3, 4, 5; foo(p1); void foo(struct point p[]) printf("%d %d ", p->x, p[3].y);

A.
Compile time error
B.
1 0
C.
1 somegarbagevalue
Answer
D.
None of the mentioned

Answer: Option C

Solution

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