dos_compilers/Manx Aztec C86 v340a/INCLUDE/EXMPL.C

10 lines
186 B
C++
Raw Permalink Normal View History

2024-07-01 15:45:15 +02:00
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);
}