如果我不知道这个单词有多长,我就不能写 char m[6];
,
这个单词的长度可能是十个或二十个。
如何使用 scanf
从键盘获取输入?
#include <stdio.h>
int main(void)
{
char m[6];
printf("please input a string with length=5\n");
scanf("%s",&m);
printf("this is the string: %s\n", m);
return 0;
}
请输入一个长度为5的字符串
输入: 你好
这是字符串 hello