0249-mod.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
---
0249-mod.c (167B)
---
1 int
2 main(void)
3 {
4 int a = -1;
5 unsigned b = 3, c = 10;
6
7 if (!(a % 2 == -1))
8 return 1;
9 if (!(b % 2 == 1))
10 return 2;
11 if (!(c % 8 == 2))
12 return 2;
13
14 return 0;
15 }