C 语言实例 - 计算字符串长度
计算字符串长度。
实例 - 使用 strlen()
#include <stdio.h> #include <string.h> int main() { char s[1000]; int len; printf("输入字符串: "); scanf("%s", s); len = strlen(s); printf("字符串长度: %d", len); return 0; }
输出结果为:
输入字符串: codebaoku 字符串长度: 6
实例 - 不使用 strlen()
#include <stdio.h> int main() { char s[1000], i; printf("输入字符串: "); scanf("%s", s); for(i = 0; s[i] != '\0'; ++i); printf("字符串长度: %d", i); return 0; }
输出结果为:
输入字符串: codebaoku 字符串长度: 9
C 语言实例 - 查找字符在字符串中出现的次数 C 语言实例 查找字符在字符串中的起始位置(索引值从 0 开始)。 实例 [mycode3 type='cpp'] #include int main() { char str[1000], ch; int i, frequency = 0; printf('输入字符串: '); fgets(str, (si..