Vidyalelo
C Programming · Q131

Structure and Union

Programming · C Programming · question 131

Q131

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; foo(p1); void foo(struct point p[]) printf("%d %d ", p->x, ++p->x);

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

Answer: Option B

Solution

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