#include { int x = 100; { int x = 200; printf(“%d”, x ); } printf(“%d ”, x );}The output of this program is:

#include <stdio.h>
{
    int  x = 100;
    {
     int x = 200;
    printf(“%d”, x );
    }
    printf(“%d  ”, x );
}
The output of this program is:



Will not work. main() is not included

Comments