标签: compiler-construction bison flex-lexer
抱歉我的英文。 我需要取主函数的参数值。 我在野牛说:
int main (int argc, char ** argv)
我在Windows中编译:
file.exe <input.txt
=&GT;
argc = 1
和
argv = "file.exe"
为什么呢? 谢谢。
答案 0 :(得分:1)
尝试“file.exe input.txt”,不带“&lt;”:argv [1]将是“input.txt”。