10 lines
186 B
C++
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);
|
||
|
}
|