Question:What will be output if you will compile and execute the following c code?
#include<stdio.h> int main(){ int x=2,y=3; if(x+y<=5) printf("True"); else printf("False"); }
A True
B False
C Compiler error: Lvalued required
D Compiler error: Invalid expression
E None
+ AnswerA
+ Report