Math, asked by sakthivasanmks, 7 months ago

#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 CallMeVISWA
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