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