If Else in C MCQs Exercise II


Ques 1 If Else


What is the output of the following code ?
#include<stdio.h>
int main()
{
    printf("%d",if(0==0));
    return 0;
}
  a) 0
  b) Error
  c) 1
  d) true


b is the correct option