Computer Science, asked by rr932223, 6 months ago

What will be the output of following code?
//Assume necessary header files are present
#include<stdio.h>
int main()
{
int a=9,b;
b=a+2>=10;
h
printf("%d",b);
return 0;
}​

Answers

Answered by happye779
0

Answer:

1

Explanation:

b=a+2>=10

this condition is true

so true is represented as 1

therefore the answer is 1

Similar questions