I would like to help me with the following code:
int main()
{
int a = 3;
int $ab = 15;
printf("%d %d\n", a, $ab);
return 0;
}
In this very simple code I declared the $ab variable which supposed to be invalid. Instead, the program is compiled and run successfully.
Can anybody explain this?