Interview Question 3570

Created by admin on Sat, 17/11/2012 - 12:38
Explanation: 
In the end of nested structure yy a member have to be declared..
Question: 

#include main()
{
struct xx {
int x;
struct yy {
char s;
struct xx *p;
};
struct yy *q;
};
}

Language: 
Answer: 

Compiler Error