Error Compile C in Gcc - Accentuation

0

Compiling the C code in GCC, and then executing it.

An accent error occurs:

PROGRAM:

#include <stdio.h>

int main() {
  printf ("Bem Vindo ao Nosso Jogo de Adivinhação");
}

Command Terminal:

gcc adivinhacao.c -o adivinhacao.exe
adivinhacao.exe: 
Bem Vindo ao Nosso Jogo de Adivinhação
    
asked by anonymous 08.08.2017 / 02:34

1 answer

0

Windows? On my machine it ran normally with the accents.

$ cat prog.c 
#include <stdio.h>

int main() {
  printf ("Bem Vindo ao Nosso Jogo de Adivinhação");
}
$ gcc prog.c -o prog
$ ./prog
Bem Vindo ao Nosso Jogo de Adivinhação

My version of gcc: gcc version 6.3.1 20161221 (Red Hat 6.3.1-1) (GCC)

    
08.08.2017 / 04:13