Advertisement
Dprogrammed1

C ques 59

Apr 5th, 2019
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.14 KB | None | 0 0
  1. #include<stdio.h>
  2. void main(){
  3.     int x=1;
  4.     if(x--)
  5.          printf("The Godfather");
  6.          --x;
  7.     else
  8.          printf("%d",x);
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement