Computer Science, asked by 98tusharsingh, 2 months ago

Q: What will be the value of a and c after execution of the following code if a is 7,
bis 5, and c is 10? (a > b) && (a <= c))? a = a +1: C = C+1;
8 and 11
8 and 10
7 and 11
7 and 10​

Answers

Answered by ASHRA875
0

int main()

{

int x=1;

float y = 1.0;

if(x == y)

{

printf("Polo\n");

}

if( 1 == 1.0)

{

printf("Golf\n");

}

if( 1.0 == 1.0f )

{

printf("Boxing\n");

}

return 0;

}

Similar questions