dos_compilers/Manx Aztec C86 v42b/EXMPL.C
2024-07-02 07:07:59 -07:00

10 lines
186 B
C

main()
{
char buffer[100];
printf("Please enter your name: ");
gets(buffer);
printf("Hello %s, welcome to the growing family of AZTEC C users.\n",
buffer);
}