Storage Class and Scope Example
/* Valid scope Example */

struct foo {
    int foo;
} foo;

int main()
{
    struct foo {
        int foo;
    } foo;

    {
        struct foo {
            int foo;
        } foo;
    }

    return(0);
}

Next slide