#include <stdio.h>

int main( int argc, char* argv[] )
{
   printf( "x = %d\n", x );
}

int x = 4;

void f( )
{
   printf( "x = %d\n", x );
}