1typedef struct2{3 int a;4 float b;5} mystruct;6 7int main()8{9 mystruct c;10 11 c.a = 5;12 c.b = 3.6;13 14 return 0;15}