0236-sizeof.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
---
0236-sizeof.c (86B)
---
1
2 int
3 main(void)
4 {
5 int nomatches[128];
6
7 return sizeof(nomatches)[0] - sizeof(int);
8 }