#include<stdio.h>main(){struct xx { int x; struct yy { char s; struct xx *p; }; struct yy *q; }; }Answer:Compiler ErrorExplanation:in the end of nested structure yy a member have to be declared.