โช Choose the correct option.
What will be the output of the following program on GCC?
#include
int main(){
int a=12,n=20;
a=(a=5 && n=4?1:0);
printf("a=%d ",a);
return 0;
}
What will be the output of the following program on GCC?
What will be the output of the following program on GCC?
#include
int main(){
int a=12,n=20;
a=(a=5 && n=4?1:0);
printf("a=%d ",a);
return 0;
}