c语言字符串输入空格字符
发布时间: 2024-01-08 12:11:32
Ⅰ c语言输入一个中间代有空格的字符串,为什么不可以用scanf 急急急
默认是以空白符作为结束标记的,如果要用scanf读取带空格的字符串,可以这样。
以换行符作为结束标记,从而读取带空格的字符串。
#include<stdio.h>
intmain()
{
charstr[100];
scanf("%[^ ]",str);
printf("%s",str);
return0;
}
Ⅱ C语言中怎么输出一个字符串空格后面的部分
找到字符串空格的地址,然后显示把地址加一,显示出来就行了!
例如:
#include<stdio.h>
intmain()
{
chars[]="asdbfed";
inti;
for(i=0;s[i]!='