source:
CIVL/examples/library/civlc/havoc.cvl@
fffb3b88
| Last change on this file since fffb3b88 was c84ae6e2, checked in by , 10 years ago | |
|---|---|
|
|
| File size: 171 bytes | |
| Line | |
|---|---|
| 1 | #include<civlc.cvh> |
| 2 | #include<stdio.h> |
| 3 | |
| 4 | int main(){ |
| 5 | int x; |
| 6 | |
| 7 | $havoc(&x); |
| 8 | printf("x=%d\n", x); |
| 9 | for(int i=0; i<5; i++){ |
| 10 | $havoc(&x); |
| 11 | printf("x=%d\n", x); |
| 12 | } |
| 13 | } |
Note:
See TracBrowser
for help on using the repository browser.
