#include <stdio.h>
#include <string.h>
int main() {
char name[20];
printf("enter your name: ");
fgets(name,sizeof(name),stdin);
printf("\nyour name is: %s",name);
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: