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