Programming Languages C Objective
Mar 09, 2013

What is the output of the following code?

main()
{
struct
{
int i;
}xyz;
(*xyz)->i=10;
printf("%d",xyz.i);
}

Choose the correct answer:
A) 15
B) 10
C) Address of i
D) Compiler error
Detailed Explanation

No Explanation

Discussion (0)

No comments yet. Be the first to share your thoughts!

Share Your Thoughts
Feedback