Answer to Question #3336 in C++ for mukunda

Question #3336
Write a program to take your name as input from the user through console and display it on screen? Note use scanf() function
1
Expert's answer
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!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS