gpt4 book ai didi

c - 查找超过 1 个输入字符串的长度

转载 作者:行者123 更新时间:2023-11-30 16:27:31 26 4
gpt4 key购买 nike

如何在不创建多个字符数组的情况下查找超过 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);
}

最佳答案

而不是 scanf("[%s]",c);您可以使用fgets (c, 100, stdin);从用户输入中读取字符串。

关于c - 查找超过 1 个输入字符串的长度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52710622/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com