如何声明 C 字符串数组
我正在为课堂开发一个简单的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果
seen_identifiers
从 0 开始,则永远不会分配给identifiers[0]
,因此strcmp
将出错。If
seen_identifiers
starts at 0, you never assign toidentifiers[0]
and so thestrcmp
will fault.