#include <stdio.h> struct tt{ int x; struct tt *y; } s[2]={ 1,0,2,0}; int main( ){ struct tt *p=s; p->y=s; printf("%d",++p->x); return 0; }