#include
int main()
{
char name[100];
printf("What is your name?");
fgets(name,100,stdin);
printf("your name is %s", name);
}
This is a personal record of my python programming experiences. It will allow me to see how I am progressing as I learn a new language.
No comments:
Post a Comment