local variables
This commit is contained in:
parent
b69bd8be29
commit
0a14c8ca2a
4 changed files with 96 additions and 15 deletions
|
@ -1,5 +1,7 @@
|
|||
static int x = -2;
|
||||
static char x = -2;
|
||||
|
||||
long main(int argc, char **argv) {
|
||||
return x + 17.3;
|
||||
int y = 38;
|
||||
int z = y + x;
|
||||
return z + x;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue