c语言中如何使用gets()命令获取文本输入并使用printf语句显示输出?

How to use the gets() command to take text input and display output using printf statement in c language?

我想要一个使用 gets() 函数获取文本输入的 c 语言程序,...然后使用 print f statement.please answer 打印相同的文本! :)

试试这个:

#include <stdio.h>

int main()
{
   char str[50];

   printf("Enter a string : ");
   gets(str);

   printf("You entered: %s", str);

   return(0);
}