Question:What will be output if you will compile and execute the following c code?
#include<stdio.h>
int main(){
  int a=15,b=10,c=5;
  if(a>b>c )
    printf("True");
  else
    printf("False"); 
  return 0;
}
 

A True 

B False 

C Run time error 

D Compiler error 

E None 

+ Answer
+ Report
Total Preview: 1167

Copyright © 2024. Powered by Intellect Software Ltd