0004-pointer.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
---
0004-pointer.c (73B)
---
1 int
2 main()
3 {
4 int x;
5 int *p;
6
7 x = 4;
8 p = &x;
9 *p = 0;
10
11 return *p;
12 }