在lex中如何使yyin指向yacc中具有main函数的文件?
我将传递给 yacc 中 main 的参数存储在一个文件中。现在我希望 lex 从该文件而不是终端读取其输入。我知道我可以将 yyin 指向一个文件 就像 yyin = fopen("fn","r"); 但这仅当 main 位于 lex 中时才有效。当我在 yacc 的 main 中使用这个 yyin 声明时,它显示一个错误,所以请提出一些建议来克服这个问题。
I am storing the arguments passed to main in yacc in a file. Now I want the lex to read its input from this file rather than the terminal. I know I can point yyin to a file
like yyin = fopen("fn","r");
but this works only when main is in lex. When I use this yyin declaration in main in yacc, it shows an error so please suggest something to overcome this problem.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能只需要声明
如果这不能解决问题,请提供您收到的错误消息。
You probably just need to declare
If that doesn't solve the problem, please give the error message you got.