dos_compilers/Manx Aztec C86 v340a/INCLUDE/EXMPL.C
2024-07-01 06:45:15 -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);
}