Computer Science, asked by rr932223, 3 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;
a
printf("%d",b);
return 0;
}
b​

Answers

Answered by happye779
0

Answer:

the output is 1

Similar questions