source:
CIVL/mods/dev.civl.com/examples/svcomp17/uchar.c@
cb4d4f4
| Last change on this file since cb4d4f4 was aad342c, checked in by , 3 years ago | |
|---|---|
|
|
| File size: 207 bytes | |
| Line | |
|---|---|
| 1 | #include<stdio.h> |
| 2 | |
| 3 | int main(){ |
| 4 | unsigned char a=4, b=7; |
| 5 | //int a=4, b=7; |
| 6 | |
| 7 | int d, *p=&d; |
| 8 | int t=(int)(*(p+a)); |
| 9 | |
| 10 | /*if(a & b) |
| 11 | printf("true branch\n"); |
| 12 | else |
| 13 | printf("false branch\n");*/ |
| 14 | t++; |
| 15 | } |
Note:
See TracBrowser
for help on using the repository browser.
