Answer to Question #3336 in C++ for mukunda
Write a program to take your name as input from the user through console and display it on screen? Note use scanf() function
1
2011-07-15T14:22:28-0400
#include <cstdio>
int main()
{
char name[100];
printf ("Please input your name:\n");
scanf ("%100s", name);
printf ("Your name is %s\n", name);
return 0;
}
Need a fast expert's response?
Submit order
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Learn more about our help with Assignments:
C++
Comments
Leave a comment