Im using Dev - C++, and developing some software for myself in my language, every string that i type can't have chars like 'é' or 'ã' and 'ç' don't show 'ç'. But in my native language they are all necessary characters to build words. What i need to do in this IDE or in the code to bring this chars to the screen? Any help, thanks.
When i do the Execute -> Compile & Run . of:
int main(int argc, char *argv[]) {
char *text = "é á ç â\n";
fprintf(stdout,text);
return 0;}
i get:
note: i intend to continue to do code in this IDE. i use others but this questions is for users of this IDE.