source:
CIVL/mods/dev.civl.abc/examples/c/pointsToAnalysis/pointerToArrayArgument.c
| Last change on this file was aad342c, checked in by , 3 years ago | |
|---|---|
|
|
| File size: 97 bytes | |
| Rev | Line | |
|---|---|---|
| [aad342c] | 1 | int *p, *q; |
| 2 | ||
| 3 | int f(int *a) { | |
| 4 | p = a + 1; | |
| 5 | q = a + 2; | |
| 6 | } | |
| 7 | ||
| 8 | int main() { | |
| 9 | int a[10]; | |
| 10 | ||
| 11 | f(a); | |
| 12 | } |
Note:
See TracBrowser
for help on using the repository browser.
