void selecionarPersonagem(int opcaoPersonagem);
char tipoPersonagem[3][100] = {{"Lutador"}, {"Ninja"}, {"Apelão"}};
char tipoArma[3][100] = {{"Faca"}, {"Pistola"}, {"Socão"}};
int main()
{
//Definição para acentos e cedilha
setlocale(LC_ALL, "Portuguese");
int flag = 0;
do{
int opcaoPersonagem;
printf("Escolha seu personagem:\n");
printf("[1] All Might.\n");
printf("[2] Bulma.\n");
printf("[3] Kirito.\n");
printf("[4] Naruto.\n");
scanf("%i", &opcaoPersonagem);
if(opcaoPersonagem < 1 || opcaoPersonagem > 4)
printf("Opção inválida, tente novamente.");
else{
selecionarPersonagem(opcaoPersonagem);
}
}while(flag == 0);
return 0;
}
void selecionarPersonagem(int opcaoPersonagem)
{
FILE *fptr;
char c;
if(opcaoPersonagem == 1)
char filename[100] = "personagem1.txt"
fptr = fopen(filename, "r");
c = fgetc(fptr);
while(c != EOF){
printf("%c", c);
c = fgetc(fptr);
}
fclose(fptr);
}
Compiler error: || === Build: Debug in project-mini-rpg (compiler: GNU GCC Compiler) === | C: \ Users \ pauli.dev \ c \ project-mini-rpg \ main.c || In function 'selectSize': | C: \ Users \ pauli.dev \ c \ project-mini-rpg \ main.c | 40 | error: expected expression before 'char' | || === Build failed: 1 error (s), 0 warning (s) (0 minute (s), 0 second (s)) === |