从键盘任意输入一个字符串,计算其实际字符个数并打印输出,即不使用字符串处理函数strlen()编程实现strlen()的功能。

从键盘任意输入一个字符串,计算其实际字符个数并打印输出,即不使用字符串处理函数strlen()编程实现strlen()的功能。

**输入格式要求:gets()
**提示信息:“Please enter a string:”
**输出格式要求:“The length of the string is: %u\n”
程序的运行示例如下:
Please enter a string:Hello China
The length of the string is: 11

#include

int main(void)
{
    char s[100];
    int count = 0;
    int i;
    printf("Please enter a string:");
    gets(s);
    for (i = 0; s[i] != '\0'; i++)
        count++;
    printf("The length of the string is: %u\n", count);
}

你可能感兴趣的:(从键盘任意输入一个字符串,计算其实际字符个数并打印输出,即不使用字符串处理函数strlen()编程实现strlen()的功能。)