/* a thing to self-teach variables. */ #include int main() { char name[9999]; printf("what's your name?\n"); scanf("%s", name); system("clear"); printf("hello, %s.\n", name); return 0; }