Q. What is the output of this program?
Code:main()
{
struct
{
int i;
}xyz;
(*xyz)->i=10;
printf(“%d”,xyz.i);
}
β
Correct Answer: (A)
10
main()
{
struct
{
int i;
}xyz;
(*xyz)->i=10;
printf(“%d”,xyz.i);
}
You must be Logged in to update hint/solution