1  
       2  typedef struct srecord {
       3    int x;
       4    int y;
       5    int z;
       6  } record ;
       7  
       8  
       9  
      10  static record a[50];
      11  
      12  main()
      13  {
      14    int i = 1;
      15  
      16    a[i].x = 1;
      17    a[i].y = 2;
      18    a[i].z = 3;
      19  }