C - Structures,Unions - Discussion

You Are Here :: Home > C > Structures,Unions - Discussion

 



Q.

What is the output of this 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\n", p->x, p[2].y);
}

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

Answer: Option A
Explaination:

No Explanation



Discussion

Your Comments Goes here...
NameDiscussion