如何在不创建多个char数组的情况下找到超过1个输入字符串的长度?我需要创建多个数组吗?
//Find Length of string you entered
#include <stdio.h>
#include <string.h>
int main()
{
char c[100];
printf("Please enter 2 or more words: \n ");
scanf("[%s]",c);
printf("Length is = %ld\n", strlen(c));
return(0);
}
答案 0 :(得分:0)
您可以使用scanf("[%s]",c);
代替fgets (c, 100, stdin);
来从用户输入中读取字符串。