鱼C论坛's Archiver
论坛
›
C\C++交流
› 关于字符串输入
Nosindi
发表于 2017-12-26 20:32:24
关于字符串输入
请问 如何接受一个带空格的字符串 然后再接受一个字符
例如
字符串 hello tom
字符l
人造人
发表于 2017-12-26 21:03:58
#include <stdio.h>
int main(void)
{
char str;
char ch;
fgets(str, 10, stdin);
getchar();
scanf("%c", &ch);
return 0;
}
页:
[1]
查看完整版本:
关于字符串输入