How does the compiler interpret the following code:
int a = a;
without any previously defined variable named a
? Why doesn't the compiler report error here?
How does the compiler interpret the following code:
int a = a;
without any previously defined variable named a
? Why doesn't the compiler report error here?