Answer to Question #3338 in C++ for mukunda
Write a program to take a string as input from the key board using gets() function display it on the screen.
1
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!
Learn more about our help with Assignments:
C++
Comments
Leave a comment