Question:What will be output when you will execute following c code?
#include<stdio.h> void main(){ if(!printf("Mukesh Ambani")) if(printf(" Lakashmi Mittal")); }
A Mukesh Ambani
B Lakashmi Mittal
C It will print nothing
D Mukesh Ambani Lakashmi Mittal
E Compilation error: if statement without body
+ AnswerA
+ Explanation
+ Report