Answer to Question #3338 in C++ for mukunda

Question #3338
Write a program to take a string as input from the key board using gets() function display it on the screen.
1
Expert's answer
2011-07-15T14:25:47-0400
#include <cstdio>

int main()
{
char string[100];
printf ("Please input a string:\n");
gets (string);
printf ("You string is %s\n", string);

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