brintos

brintos / llvm-project-archived public Read only

0
0
Text · 136 B · 1bf7a00 Raw
15 lines · c
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}