fork download
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. void menu_principal(char *monstro1, char* monstro2){
  5. printf("King of Tokyo\n\n");
  6. printf("Jogador escolha um monstro:\n---------------------------\n");
  7. printf("1-Godzilla\n2-Feto Gigante Zumbi Nazista\n3-Pac-Man\n4-Blanca\n5-Penha\n6-Nemesis\n\n0-SAIR\n\n");
  8. int escolha;
  9. do { scanf("%d", &escolha); } while (escolha < 0 || escolha > 6);
  10. if (escolha == 0) exit(0);
  11. char *monstros[] = { "", "Godzilla", "Feto Gigante Zumbi Nazista", "Pac-Man", "Blanca", "Penha", "Nemesis" };
  12. strcpy(monstro1, monstros[escolha]);
  13. printf("VOCE ESCOLHEU: %s\n\n", monstro1);
  14. }
  15.  
  16. int main(){
  17. char monstromain1[30]=".";
  18. char monstromain2[30]="..";
  19. menu_principal(monstromain1, monstromain2);
  20. printf("%s", monstromain1);
  21. }
  22.  
  23. //https://pt.stackoverflow.com/q/290674/101
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c: In function ‘menu_principal’:
prog.c:10:23: error: implicit declaration of function ‘exit’ [-Werror=implicit-function-declaration]
     if (escolha == 0) exit(0);
                       ^~~~
prog.c:10:23: error: incompatible implicit declaration of built-in function ‘exit’ [-Werror]
prog.c:10:23: note: include ‘<stdlib.h>’ or provide a declaration of ‘exit’
prog.c:3:1:
+#include <stdlib.h>
 
prog.c:10:23:
     if (escolha == 0) exit(0);
                       ^~~~
cc1: all warnings being treated as errors
stdout
Standard output is empty