int main(int argc, char** argv) {
int i=5;
{
int i=7;
printf("%d\n", i);
}
return 0;
}
If I want to access outer i (int i=5) value in printf then how it can done?
If I want to access outer |
||||
|
The relevant part of the C99 standard, section 6.2.1 (Scopes of identiļ¬ers):
UpdateTo prevent pmg's answer from disappearing: You can access the outer block variable by declaring a pointer to it before the hiding occurs:
Of course giving hiding variables like this is never needed and always bad style. |
||||
|
|
|
Store the outer
|
||||
|
|
|
I can't see why you can't call one 'I' and one 'J'. Different names for them would allow you to choose either. |
|||
|
|
|
Make a pointer to the old But I like Jonathan's comment the best! |
|||
|
|
i. ( ideone.com/dobQX ) – pmg Oct 7 '10 at 14:38gcc -Wshadowto report such shadowing (and probably others), and pay heed. If you really need to access the outer variable, use a different name for one of the them (the inner or outer). – Jonathan Leffler Oct 7 '10 at 14:48