gpt4 book ai didi

c - 如何计算字符串中的字符数(如果没有占用所有空间)

转载 作者:行者123 更新时间:2023-11-30 21:06:09 24 4
gpt4 key购买 nike

我有这段代码:

char* input = malloc(sizeof(char)*100);
scanf("%s", input); //let's say that the number of chars in "%s" is 5

如何计算我在 (5) 中输入了多少个字符?我尝试使用 sizeof(),但找不到解决方案。

编辑(更好的解释):输入变量最多可以容纳 100 个字符,但假设我在终端中输入“abcde”:那么它只容纳 5 个字符,其他 95 个字符不会被占用。我想计算“5”。

最佳答案

您必须找到空终止符。

int i = 0;
while(input[i] != 0) {
++i;
}
//i marks the spot

但是,是的,strlen() 做得更好,因为它有一些改进/优化的搜索,因为它使用单词(16/32/64?位)比较和东西。

关于c - 如何计算字符串中的字符数(如果没有占用所有空间),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50476551/

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