Ghislain_Mike

Goto

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