C語言簡單詞法分析器

/* 詞法分析器(C語言) 輸入源程序、輸出單詞符號 一、預處理程序 二、掃描器(單詞識別程序) */ #include <stdio.h> #include <stdlib.h> #include <string.h> #define KEYWORD_NUM 32 int pos; // pos搜索指針 char ch; // ch最新讀入的字符 char buf[1000000]; // b
相關文章
相關標籤/搜索