Advertisement
QUIZERA

goto thank you go downward

Feb 17th, 2019
702
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.15 KB | None | 0 0
  1. #include <stdio.h>
  2. int main (){
  3.  
  4. int i=100;
  5.  
  6. count:
  7.     printf("%d",i--);
  8.     printf("THANK YOU\n");
  9. if (i>0) goto count;
  10.  
  11.  
  12.  
  13.  
  14. return 0;
  15.  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement