A
Q. What is the output of this program?
Code:
main()
{
struct
{
int i;
}xyz;
(*xyz)->i=10;
printf(“%d”,xyz.i);
}
{
struct
{
int i;
}xyz;
(*xyz)->i=10;
printf(“%d”,xyz.i);
}
- Correct Answer - Option(A)
- Views: 16
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.