SELF Exam Programming

What will be the output
main()
{
int i;
i = 10;
if(i == 20 || 30)
{
printf("True");
}
else
{
printf("False");
}
}

Read Solution (Total 3)

SELF Other Question

What the below statement will print if a=10
printf("%d %d",a, !a++);
What will be the output
main()
{
if(1,0)
{
printf("True");
}
else
{
printf("False");
}
}