gpt4 book ai didi

c - 读取 C 中的字符串长度 - 无法使用

转载 作者:行者123 更新时间:2023-11-30 21:04:51 25 4
gpt4 key购买 nike

如何确定字符串中有多少个字符?我面临的问题是我不能使用 <string.h> 的规定图书馆。

这是我想要解决的问题:

#include <assert.h>
#include <stdio.h>

#define MAX_LENGTH 1024

int string_length(char *string);

int main(int argc, char *argv[]) {

assert(string_length("") == 0);
assert(string_length("!") == 1);
assert(string_length("Hello, world!") == 13);
assert(string_length("17... seventeen.\n") == 17);

printf("All tests passed. You are awesome!\n");

return 0;
}

int string_length(char *string) {
// Add code here

return 0;
}

最佳答案

C 中的所有字符串都以特殊字符 \0 结尾,因此您只需检查该字符之前有多少个字符。

int string_length(char *string) {
int chars = 0;
while(*string != '\0'){
chars++;
string++;
}
return chars;
}

关于c - 读取 C 中的字符串长度 - 无法使用 <string.h>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59007216/

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