โช 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);
}
What will be the output of the following program on GCC?
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);
}