8.6 题目:
写一函数,求一个字符串的长度。在main函数中输入字符串,并输出其长度。
思路:首先题目不难,但是在输入字符串的过程中产生了一点麻烦
①如果用scanf("%c",&a[i])逐个输入:要注意加上检查是否结束的条件以及最后的结束符
for(i=0;i<n;i++)
scanf("%c",&str[i]);//错误的,没有检测到输入的终止条件,可能会导致数组越界。应当在读取字符的
同时检查输入是否结束(例如,遇到换行符)
while (i < 50 && scanf("%c", &str[i]) == 1 && str[i] != '\n')//正确的
{
i++;
}
str[i] = '\0';
②最简单的还是用scanf("%s",str),字符串格式输入。
③也可以str[i]=getchar();
#define _CRT_SECURE_NO_WARNINGS
#include<stdio.h>
int main()
{
char str[50];
char* p=str;
int i=0, n=0;
printf("enter a string: ");
while (i < 50 && scanf("%c", &str[i]) == 1 && str[i] != '\n')
{
i++;
}
str[i] = '\0';
while (*p != '\0')
{
n++;
p++;
}
printf("the length of the string is: %d", n);
return 0;
}