Question: What is printed by the following code? void main ( void ) { int x = 8 , y = 7 ; if ( x&y

What is printed by the following code?
void main(void){
int x=8, y=7;
if (x&y) printf("True ");
else printf("False ");
if (x&&y) printf("True
");
else printf("False
");
}
Output is:
Group of answer choices
1.011 x 2-6
10.001
1.011 x 2-4

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!