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