source:
CIVL/mods/dev.civl.abc/examples/side-effects/out_assign3.c
| Last change on this file was aad342c, checked in by , 3 years ago | |
|---|---|
|
|
| File size: 140 bytes | |
| Rev | Line | |
|---|---|---|
| [aad342c] | 1 | int f() |
| 2 | { | |
| 3 | return 0; | |
| 4 | } | |
| 5 | int g() | |
| 6 | { | |
| 7 | return 1; | |
| 8 | } | |
| 9 | int main() | |
| 10 | { | |
| 11 | int* p; | |
| 12 | int $sef$0 = f(); | |
| 13 | int $sef$1 = g(); | |
| 14 | ||
| 15 | *p = $sef$0 + $sef$1; | |
| 16 | } |
Note:
See TracBrowser
for help on using the repository browser.
