0015-localarray.c - scc - simple c99 compiler
HTML git clone git://git.simple-cc.org/scc
DIR Log
DIR Files
DIR Refs
DIR Submodules
DIR README
DIR LICENSE
---
0015-localarray.c (85B)
---
1 int
2 main()
3 {
4 int arr[2];
5
6 arr[0] = 1;
7 arr[1] = 2;
8
9 return arr[0] + arr[1] - 3;
10 }