1 typedef struct { 2 int 3 x; 4 5 float 6 y; 7 } my_struct; 8 main(void)9 void main (void) { 10 my_struct var1; 11 my_struct 12 var2; 13 } 14