scope example
This commit is contained in:
16
c-basic/scope.c
Normal file
16
c-basic/scope.c
Normal file
@ -0,0 +1,16 @@
|
||||
#include <stdio.h>
|
||||
|
||||
void foo()
|
||||
{
|
||||
int a;
|
||||
{
|
||||
int a;
|
||||
}
|
||||
}
|
||||
|
||||
int main()
|
||||
{
|
||||
int a;
|
||||
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user