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