main()
{
int a=300,b,c;
if(a>=400)
b=300;
c=200;
printf("\n%d %d",b,c);
}
i hav done this program,but i got b=0,c=200.how the b value is 0,plz explain the reason.
{
int a=300,b,c;
if(a>=400)
b=300;
c=200;
printf("\n%d %d",b,c);
}
i hav done this program,but i got b=0,c=200.how the b value is 0,plz explain the reason.
Comment