source:
CIVL/mods/dev.civl.com/examples/analysis/unreached.c@
cb4d4f4
| Last change on this file since cb4d4f4 was aad342c, checked in by , 3 years ago | |
|---|---|
|
|
| File size: 173 bytes | |
| Line | |
|---|---|
| 1 | #define MAX(a,b) (((a)>=(b))?(a):(b)) |
| 2 | |
| 3 | void main(){ |
| 4 | int a=0; |
| 5 | |
| 6 | a = MAX(a, 1); |
| 7 | a = a < 5 ? 10 : 100; |
| 8 | if(a>0){ |
| 9 | a=1; |
| 10 | }else{ |
| 11 | a=2; |
| 12 | } |
| 13 | } |
Note:
See TracBrowser
for help on using the repository browser.
