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