#include<stdio.h> int main( void ) { struct st { int n; struct st*next; }a[] = {5, &a[1],7,&a[2],9,NULL},*p=a; return 0; }