用c语言判断字符串空格个数
时间: 2024-05-01 12:24:02 浏览: 188
c语言,怎样输出有空格的字符串?.txt
5星 · 资源好评率100%
可以使用如下代码来判断字符串中空格的个数:
```c
#include <stdio.h>
int countSpaces(char str[]) {
int i, count = 0;
for (i = 0; str[i] != '\0'; i++) {
if (str[i] == ' ') {
count++;
}
}
return count;
}
int main() {
char str[] = "Hello world! This is a test.";
int spaces = countSpaces(str);
printf("The number of spaces in the string is: %d\n", spaces);
return 0;
}
```
在上面的代码中,`countSpaces()` 函数接受一个字符串作为输入,并遍历字符串中的每个字符。如果当前字符是空格,则将计数器 `count` 加一。最后,函数返回空格的总数。在 `main()` 函数中,我们使用一个测试字符串来测试 `countSpaces()` 函数。
阅读全文