Question:What will be output when you will execute following c code?
#include<stdio.h>
void main(){
    if(0xA)
         if(052)
             if('\xeb')
                 if('\012')
                      printf("Tom hanks");
                 else;
             else;
         else;
    else;
}
 

A Tom hanks 

B Compilation error: Misplaced else 

C Compilation error: If without any body 

D Compilation error: Undefined symbol 

E Warning: Condition is always true 

+ Answer
+ Explanation
+ Report
Total Preview: 773

Copyright © 2024. Powered by Intellect Software Ltd