source:
CIVL/mods/dev.civl.abc/examples/shadow/shadow2.c
| Last change on this file was 8c31c3b, checked in by , 3 years ago | |
|---|---|
|
|
| File size: 156 bytes | |
| Line | |
|---|---|
| 1 | #include <stdio.h> |
| 2 | int main() { |
| 3 | int x=1; |
| 4 | { |
| 5 | int x=2; |
| 6 | { |
| 7 | int x=3; |
| 8 | printf("%d", x); |
| 9 | } |
| 10 | printf("%d", x); |
| 11 | } |
| 12 | printf("%d", x); |
| 13 | } |
Note:
See TracBrowser
for help on using the repository browser.
