#include<stdio.h>
void main()
{
int a=100,b=200,c;
c=(a==100||b>200);
printf("The value of c is =%d”,c);
}
Answers
Answered by
1
Answer:
100
Step-by-step explanation:
as a=100 but b not greater than 200 the value of c will be 100
Similar questions