Compiler Design Program to Design a Lexical Analyzer #include<string.h> #include<ctype.h> #include<stdio.h> void keyword(char str[10]) { if(strcmp("for",str)==0||strcmp("while",str)==0||strcmp("do&… Posted by: CSE STUDY ZONE Post a Comment