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