#include <stdio.h> struct num { int x,y; }a[2]={1,2,3,4}; void main () { struct num *p=a; printf("%d\n",(p++)->x); printf("%d\n",++p->y); }