dos_compilers/Manx Aztec C86 v42b/LIB/EXMPL.C

10 lines
186 B
C++
Raw Normal View History

2024-07-02 16:07:59 +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);
}