gpt4 book ai didi

c - 从函数内部进行矩阵访问

转载 作者:行者123 更新时间:2023-11-30 14:24:16 25 4
gpt4 key购买 nike

我有大量字符串需要存储在字符数组中,并且需要能够循环遍历所有字符串。

此外,这些字符串不会改变,所以我希望矩阵是永久的,最好存储在头文件中。

有人能指出我正确的方向吗?

我正在使用 C 语言工作,不知道解决这个问题的最佳方法。

谢谢!

最佳答案

header 中的变量定义可能不是一个好主意,请考虑替代方案:

// source.c contains
const char *const strings[] = {
"string1", "string2", NULL
};

// source.h contains
extern const char *const strings[];

// include source.h anywhere and loop through the strings like this:
for (const char *const *str = strings; *str != NULL; ++str)
// use *str

关于c - 从函数内部进行矩阵访问,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11996519/

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