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