Home | History | Annotate | Download | only in variable_out_of_scope
      1 typedef struct
      2 {
      3     int a;
      4     float b;
      5 } mystruct;
      6 
      7 int main()
      8 {
      9     mystruct c;
     10 
     11     c.a = 5;
     12     c.b = 3.6;
     13 
     14     return 0;
     15 }