如何声明 C 字符串数组

发布于 2024-08-07 07:15:29 字数 556 浏览 5 评论 0原文

我正在为课堂开发一个简单的 lex 程序,并在其中创建一个非常基本的符号表,只是一个带有线性扫描搜索的字符串数组。我已将其声明为:

char* identifiers[100];

并且我像这样使用它:

found = false;
for (i = 0; i < seen_identifiers; i++) {
    if (!strcmp(identifiers[i], yytext)) {
        printf("Identifier \"%s\" already in symbol table", yytext);
        found = true;
        break;
    }
}
if (!found) {
    printf("identifier: %s\n", yytext);
    seen_identifiers++;
    identifiers[seen_identifiers] = yytext;
}

但是我始终在 strcmp 调用中遇到段错误。我确信我搞砸了一些超级简单的事情。

I'm working on a simple lex program for class, and in it I'm creating a very rudimentary symbol table, just an array of strings with a linear scan for search. I've declared it as:

char* identifiers[100];

And I'm using it like so:

found = false;
for (i = 0; i < seen_identifiers; i++) {
    if (!strcmp(identifiers[i], yytext)) {
        printf("Identifier \"%s\" already in symbol table", yytext);
        found = true;
        break;
    }
}
if (!found) {
    printf("identifier: %s\n", yytext);
    seen_identifiers++;
    identifiers[seen_identifiers] = yytext;
}

However I consistently get a segfault at the strcmp call. I'm sure I've screwed up something super simple.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不羁少年 2024-08-14 07:15:29
seen_identifiers++;
identifiers[seen_identifiers] = yytext;

如果 seen_identifiers 从 0 开始,则永远不会分配给 identifiers[0],因此 strcmp 将出错。

seen_identifiers++;
identifiers[seen_identifiers] = yytext;

If seen_identifiers starts at 0, you never assign to identifiers[0] and so the strcmp will fault.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文