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 

+ Answer
+ Explanation
+ Report
Total Preview: 757

Copyright © 2024. Powered by Intellect Software Ltd