What will be the output of the below C program.

		
					

Loading

โœช Choose the correct option.

What will be the output of the below C program.


#include

int main(){

int a= 0;

int b = 20;

char x =1;

char y =10;

if(a,b,x,y)

printf("hello");

return 0;

}

A. hello
B. Compilation Error
C. no output No Error
D. None of these