source:
CIVL/mods/dev.civl.abc/examples/side-effects/calls.c
| Last change on this file was aad342c, checked in by , 3 years ago | |
|---|---|
|
|
| File size: 121 bytes | |
| Line | |
|---|---|
| 1 | |
| 2 | int f(int a, int b, int c) { |
| 3 | return a+b+c; |
| 4 | } |
| 5 | |
| 6 | int g(int n) { |
| 7 | return f(n,2*n,3*n); |
| 8 | } |
| 9 | |
| 10 | int main() { |
| 11 | return g(10); |
| 12 | } |
Note:
See TracBrowser
for help on using the repository browser.
