Advertisement
rreyeshn

Untitled

Jul 17th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.25 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main(){
  4. goto PASO3;
  5. PASO1:
  6.     printf("Este es el paso #1\n");
  7.     goto SALIDA;
  8. PASO2:
  9.     printf("Este es el paso #2\n");
  10.     goto PASO1;
  11. PASO3:
  12.     printf("Esto es el paso #3\n");
  13.     goto PASO2;
  14. SALIDA:
  15.    return 0;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement