Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main()
  5. {
  6. // como la vamos a utilizar en la funcion la vas a u
  7. int opcion;
  8. // hacemos la funcion
  9. void menu_programa()
  10. {
  11.  
  12. printf(
  13. "1) opcion 1\n"
  14. "2) opcion 2\n"
  15. "3) opcion 3\n"
  16. "4) opcion 4\n"
  17. "5) opcion 5\n"
  18. );
  19. scanf("%i", &opcion);
  20. }
  21.  
  22.  
  23.  
  24. menu_programa(opcion);
  25. printf("%i", opcion);
  26. return 0;
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement