What is the output of the following C Code??
#include stdio.h
int j=7;
void main()
{
int i=2;
{
int i=8,j=3;
printf("%d %d",i,j);
}
printf("%d %d",i,j);
}


Posted on by