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); }Choose all that apply:
A The Godfather
B 1
C 0
D Compilation error
E None
+ AnswerD
+ Explanation
+ Report