Predict the output of following “C” code:

			  		

Loading

Practice Basic Concept – Predict the output of following “C” code:


main()
{
int var=20;
printf("%d,",var);
{
int var=30;
printf("%d",var);
}
}