资源简介

编译原理的词法分析实验,用flex和bison做的,能识别关键字和自定义的变量。包含与之相对应的实验报告。可以直接拿来交给老师的。

资源截图

代码片段和文件信息

#include 
#include 
int lexverbose=0;
extern int yyparse();

int main(int argc char* argv[])
{
extern FILE *yyin;

printf(“Compiling...!\n“);
if((yyin=fopen(“ain.txt““rt“))==NULL){
perror(“can not open file test.txt\n“) ;
exit(1);
}
if (yyparse()==1){
fprintf(stderr“parser error\n“);
exit(1);
}
printf(“yyparse() completed successfully!\n“);
return 0;
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件         31  2011-11-06 23:30  2009210590 杨剑\ain.txt

     文件     213049  2011-11-06 23:26  2009210590 杨剑\Debug\example.exe

     文件     223644  2011-11-06 23:26  2009210590 杨剑\Debug\example.ilk

     文件       3559  2011-11-06 23:26  2009210590 杨剑\Debug\example.obj

     文件     184772  2011-11-06 23:25  2009210590 杨剑\Debug\example.pch

     文件     508928  2011-11-06 23:26  2009210590 杨剑\Debug\example.pdb

     文件      32592  2011-11-06 23:20  2009210590 杨剑\Debug\lex.yy.obj

     文件       9683  2011-11-06 23:23  2009210590 杨剑\Debug\myyacc.tab.obj

     文件      33792  2011-11-06 23:30  2009210590 杨剑\Debug\vc60.idb

     文件      53248  2011-11-06 23:26  2009210590 杨剑\Debug\vc60.pdb

     文件        417  2011-11-06 23:26  2009210590 杨剑\example.c

     文件       3602  2011-11-06 23:29  2009210590 杨剑\example.dsp

     文件        537  2011-11-06 23:29  2009210590 杨剑\example.dsw

     文件      50176  2011-11-06 23:30  2009210590 杨剑\example.ncb

     文件      48640  2011-11-06 23:30  2009210590 杨剑\example.opt

     文件        248  2011-11-06 23:30  2009210590 杨剑\example.plg

     文件      40629  2011-11-06 23:19  2009210590 杨剑\lex.yy.c

     文件      23495  2011-11-06 23:23  2009210590 杨剑\myyacc.tab.c

     文件        177  2011-11-06 23:23  2009210590 杨剑\myyacc.tab.h

     文件        288  2011-11-20 00:24  2009210590 杨剑\readme.txt

     文件      81408  2011-11-06 23:58  2009210590 杨剑\词法分析实验报告.doc

     目录          0  2011-11-19 11:44  2009210590 杨剑\Debug

     目录          0  2011-11-20 00:25  2009210590 杨剑

----------- ---------  ---------- -----  ----

              1512915                    23


评论

共有 条评论