Vidyalelo
C Programming · Q81

Structure and Union

Programming · C Programming · question 81

Q81

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

A.
Compile time error
Answer
B.
Segmentation fault/code crash
C.
2
D.
1

Answer: Option A

Solution

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