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