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