Vidyalelo
C Programming · Q163

Structure and Union

Programming · C Programming · question 163

Q163

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

A.
1 0
Answer
B.
Compile time error
C.
1 somegarbagevalue
D.
Undefined behaviour

Answer: Option A

Solution

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