📅  最后修改于: 2022-03-11 15:04:36.733000             🧑  作者: Mango
// Use of Getstring
#include
int main(){
char name[100];
int age;
printf("Enter your name\n");
gets(name);
printf("your name is %s", name);
}
//In the terminal your name is (name input)