#include <stdio.h>
#include <stdlib.h>
int main() {
char palavras[100];
printf("Digite seu nome:\n");
fgets(palavras, 100, stdin);
printf("\n\t%s\n\n", palavras);
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: