非空格字符会导致scanf()
读取并丢弃匹配的字符。
例如,“%d,%d”
会导致scanf()
读取整数,读取并丢弃逗号,然后读取另一个整数。
如果未找到指定的字符,则scanf()
终止。
如果要读取并丢弃百分号,请在控制字符串中使用%%
。
#include <stdio.h>
int main(void)
{
int i;
char str[80], str2[80];
printf("skip white space testing, input one integer, two strings and comma in between./n");
scanf("%d,%s,%s", &i, str, str2);
printf("%d %s %s", i, str, str2);
return 0;
}
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/266505.html