I can not use accents in Code Blocks

1

Hello! I have a code:

include stdio.h>
include locale.h>

int main()
{
setlocale(LC_ALL,"portuguese");
printf("Agora não tem mais problema algum para utilizar acentuação!\n");
return 0;
}

Configured right ... But it does not return with the accented characters due. If I use DEV C ++ it works fine.

I set up the GNC CC Compiler at the beginning.

    
asked by anonymous 15.09.2017 / 01:39

1 answer

2

Test this way without putting Portuguese.

#include <stdio.h>
#include <locale.h>

int main()
{
setlocale(LC_ALL,"");
printf("Agora não tem mais problema algum para utilizar acentuação!\n");
return 0;
}

    
15.09.2017 / 14:38