Question:What will be output when you will execute following c code?
#include<stdio.h> void main(){ int x=1; if(x--) printf("The Godfather"); --x; else printf("%d",x); }
A The Godfather
B 1
C 0
D Compilation error
E None of the above
+ AnswerD
+ Explanation
+ Report