Computer Science, asked by swapnodipghosh2015, 11 months ago

#include
#include
int main ()
{
if ( ( -100 && 100) || ( 20 && -20) )
printf ( " condition is true ");
else
printf ( "condition is false") ;
return 0;
getch();
}
It's output is
condition is true
Can anyone please tell me the proper reason for this output.
I want genuine answers . Useless answers will be reported.

Answers

Answered by AtharvaKulkarni214
1

Explanation:

if the input is then it will show that it is true else it's false

Similar questions