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 

+ Answer
+ Report
Total Preview: 1247

Copyright © 2024. Powered by Intellect Software Ltd