Posts by Lucas • 1 point
1 post
-
-1
votes1
answer80
viewsQ: How to print words with special characters in c language
#include <stdio.h> #include <locale.h> #include <string.h> int main () { char palavra[10]; setlocale(LC_ALL,"Portuguese_Brazil"); printf("açúcar\n"); gets( palavra); printf("a…