Advertisement
Guest User

asdasdasdasd

a guest
Dec 12th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. void main()
  2. {
  3. setlocale(LC_ALL, ""); //Caracteres acentuados
  4.  
  5. Utilizadores user[10];
  6. int nUsers = 10;
  7. char ope;
  8. ope = menu1();
  9. switch (ope) {
  10. case '1':
  11. menuLogin(user, nUsers);//Servirá para o login
  12. break;
  13. case '2':
  14. inserirUtilizador(user, nUsers); //Registar-se no sistema
  15. break;
  16. case '3':
  17. break; //Sair do programa
  18. default:
  19. printf("\nOpção inválida.");
  20. break;
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement