โช Choose the correct option.
Predict the output of following “C” code:
#include
main()
{
int a=100,b=300;
if(a>50)
a=200;
b=400;
printf("%d",b);
}
#include
main()
{
int a=100,b=300;
if(a>50)
a=200;
b=400;
printf("%d",b);
}