0053-struct.c - scc - simple c99 compiler
(HTM) git clone git://git.simple-cc.org/scc
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Submodules
(DIR) README
(DIR) LICENSE
---
0053-struct.c (82B)
---
1 int
2 main()
3 {
4 struct T { int x; };
5 {
6 struct T s;
7 s.x = 0;
8 return s.x;
9 }
10 }