What will be the output of the following program on GCC?

		
					

Loading

โœช Choose the correct option.

What will be the output of the following program on GCC?

#include 
void main(){
int x=10,y=5,p,q;
p=x>9;
q=x>3 && y !=3;
printf("%d %d",p,q);
}

A. 44562
B. 1 0
C. 0 0
D. 0 1