int i = 10;
int main()
{
int i = 20;
return 0;
}
Hi All,
I want to access the global variable i inside the main. Is there
a way to do this in C?
Regards,
Mohan.
int main()
{
int i = 20;
return 0;
}
Hi All,
I want to access the global variable i inside the main. Is there
a way to do this in C?
Regards,
Mohan.
Comment