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
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
Accountancy,
3 months ago
English,
3 months ago
Hindi,
3 months ago
Computer Science,
6 months ago
Biology,
6 months ago
English,
11 months ago
Math,
11 months ago