阅读背景:

如何遍历char **指针?

来源:互联网 

I have the following code

我有以下代码

struct my_struct {
    const char **enjoy;
};

const char * enjy[] = {
    "Cricket", "movie", "",
    "Ball", "eat", "",
    };

static const struct my_struct my_struct_table[1] = {
    [0] = {
        .enjoy = enjy
        }
};
struct my



你的当前访问异常,请进行认证后继续阅读剩余内容。

分享到: