#include <stdio.h>
#include <string.h>
void menu_principal( char * monstro1, char * monstro2) {
printf ( "Jogador escolha um monstro:\n ---------------------------\n " ) ; printf ( "1-Godzilla\n 2-Feto Gigante Zumbi Nazista\n 3-Pac-Man\n 4-Blanca\n 5-Penha\n 6-Nemesis\n \n 0-SAIR\n \n " ) ; int escolha;
do { scanf ( "%d" , & escolha
) ; } while ( escolha
< 0 || escolha
> 6 ) ; if ( escolha
== 0 ) exit ( 0 ) ; char * monstros[ ] = { "" , "Godzilla" , "Feto Gigante Zumbi Nazista" , "Pac-Man" , "Blanca" , "Penha" , "Nemesis" } ;
strcpy ( monstro1
, monstros
[ escolha
] ) ; printf ( "VOCE ESCOLHEU: %s\n \n " , monstro1
) ; }
int main( ) {
char monstromain1[ 30 ] = "." ;
char monstromain2[ 30 ] = ".." ;
menu_principal( monstromain1, monstromain2) ;
}
//https://pt.stackoverflow.com/q/290674/101
I2luY2x1ZGUgPHN0ZGlvLmg+CiNpbmNsdWRlIDxzdHJpbmcuaD4KCnZvaWQgbWVudV9wcmluY2lwYWwoY2hhciAqbW9uc3RybzEsIGNoYXIqIG1vbnN0cm8yKXsKICAgIHByaW50ZigiS2luZyBvZiBUb2t5b1xuXG4iKTsKICAgIHByaW50ZigiSm9nYWRvciBlc2NvbGhhIHVtIG1vbnN0cm86XG4tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS1cbiIpOwogICAgcHJpbnRmKCIxLUdvZHppbGxhXG4yLUZldG8gR2lnYW50ZSBadW1iaSBOYXppc3RhXG4zLVBhYy1NYW5cbjQtQmxhbmNhXG41LVBlbmhhXG42LU5lbWVzaXNcblxuMC1TQUlSXG5cbiIpOwogICAgaW50IGVzY29saGE7CiAgICBkbyB7IHNjYW5mKCIlZCIsICZlc2NvbGhhKTsgfSB3aGlsZSAoZXNjb2xoYSA8IDAgfHwgZXNjb2xoYSA+IDYpOwogICAgaWYgKGVzY29saGEgPT0gMCkgZXhpdCgwKTsKICAgIGNoYXIgKm1vbnN0cm9zW10gPSB7ICIiLCAiR29kemlsbGEiLCAiRmV0byBHaWdhbnRlIFp1bWJpIE5hemlzdGEiLCAiUGFjLU1hbiIsICJCbGFuY2EiLCAiUGVuaGEiLCAiTmVtZXNpcyIgfTsKICAgIHN0cmNweShtb25zdHJvMSwgbW9uc3Ryb3NbZXNjb2xoYV0pOwogICAgcHJpbnRmKCJWT0NFIEVTQ09MSEVVOiAlc1xuXG4iLCBtb25zdHJvMSk7Cn0KCmludCBtYWluKCl7CiAgICBjaGFyIG1vbnN0cm9tYWluMVszMF09Ii4iOwogICAgY2hhciBtb25zdHJvbWFpbjJbMzBdPSIuLiI7CiAgICBtZW51X3ByaW5jaXBhbChtb25zdHJvbWFpbjEsIG1vbnN0cm9tYWluMik7CiAgICBwcmludGYoIiVzIiwgbW9uc3Ryb21haW4xKTsKfQoKLy9odHRwczovL3B0LnN0YWNrb3ZlcmZsb3cuY29tL3EvMjkwNjc0LzEwMQ==
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