文件名称:词法分析程序(编译原理)
介绍说明--下载内容来自于网络,使用问题请自行百度
用C语言写的词法分析程序
#include "stdio.h"
#include"string.h"
#include "stdlib.h"
FILE *fp;
char filename[20];
char token[100];
int m=0;
char getch()
{
char ch;
ch=fgetc(fp);
return ch;
}
char getbc(char ch)
{
while(ch==' ') ch=getch();
return ch;
}
#include "stdio.h"
#include"string.h"
#include "stdlib.h"
FILE *fp;
char filename[20];
char token[100];
int m=0;
char getch()
{
char ch;
ch=fgetc(fp);
return ch;
}
char getbc(char ch)
{
while(ch==' ') ch=getch();
return ch;
}
相关搜索: 词法分析 编译原理 C语言
(系统自动生成,下载前可以参看下载内容)
下载文件列表
压缩包 : 编译原理.rar 列表 编译原理\a.txt 编译原理\词法分析.cpp 编译原理
压缩包 : 编译原理.rar 列表 编译原理\a.txt 编译原理\词法分析.cpp 编译原理
本网站为编程资源及源代码搜集、介绍的搜索网站,版权归原作者所有! 粤ICP备11031372号
1999-2046 搜珍网 All Rights Reserved.