Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
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?

share|improve this question
2  
Make a pointer before defining the new i. ( ideone.com/dobQX ) – pmg Oct 7 '10 at 14:38
9  
Most sanely - don't do it. Use gcc -Wshadow to 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
@pmg: Sadly the only 'correct' answer to this perverse question is in the comments. – R.. Oct 7 '10 at 17:00

7 Answers

up vote 7 down vote accepted

The relevant part of the C99 standard, section 6.2.1 (Scopes of identifiers):

4 [...] If an identifier designates two different entities in the same name space, the scopes might overlap. If so, the scope of one entity (the inner scope) will be a strict subset of the scope of the other entity (the outer scope). Within the inner scope, the identifier designates the entity declared in the inner scope; the entity declared in the outer scope is hidden (and not visible) within the inner scope.

Update

To prevent pmg's answer from disappearing: You can access the outer block variable by declaring a pointer to it before the hiding occurs:

int i = 5;
{
    int *p = &i;
    int i  = 7;
    printf("%d\n", *p); /* prints "5" */
}

Of course giving hiding variables like this is never needed and always bad style.

share|improve this answer

Store the outer i in another variable and then declare inner i. like-

int i = 5;
{
    int p = i;
    int i  = 7;
    printf("%d\n", p); /* prints "5" */
}
share|improve this answer
+1 for answer but be a little more descriptive. :) – Lokesh Mehra Nov 23 '12 at 4:52

Rename the variable.

share|improve this answer

You cannot access it.

share|improve this answer

I can't see why you can't call one 'I' and one 'J'.

Different names for them would allow you to choose either.

share|improve this answer

Make a pointer to the old i before defining the new one. ( demo at http://ideone.com/dobQX )

But I like Jonathan's comment the best!

share|improve this answer

Short answer: you can't. It is hidden by the i in the inner-scope.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.