Last active
March 21, 2023 07:52
-
-
Save MohamedSondo/dfda641421a97c10955d9e5effa6d2e1 to your computer and use it in GitHub Desktop.
Program for Lexical Analyzer in C++. very simple lexical analyzer which reads source code from file and then generate tokens.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<iostream> | |
#include<fstream> | |
#include<stdlib.h> | |
#include<string.h> | |
#include<ctype.h> | |
using namespace std; | |
int isKeyword(char buffer[]){ | |
char keywords[32][10] = {"auto","break","case","char","const","continue","default", | |
"do","double","else","enum","extern","float","for","goto", | |
"if","int","long","register","return","short","signed", | |
"sizeof","static","struct","switch","typedef","union", | |
"unsigned","void","volatile","while"}; | |
int i, flag = 0; | |
for(i = 0; i < 32; ++i){ | |
if(strcmp(keywords[i], buffer) == 0){ | |
flag = 1; | |
break; | |
} | |
} | |
return flag; | |
} | |
int main(){ | |
char ch, buffer[15], operators[] = "+-*/%="; | |
ifstream fin("program.txt"); | |
int i,j=0; | |
if(!fin.is_open()){ | |
cout<<"error while opening the file\n"; | |
exit(0); | |
} | |
while(!fin.eof()){ | |
ch = fin.get(); | |
for(i = 0; i < 6; ++i){ | |
if(ch == operators[i]) | |
cout<<ch<<" is operator\n"; | |
} | |
if(isalnum(ch)){ | |
buffer[j++] = ch; | |
} | |
else if((ch == ' ' || ch == '\n') && (j != 0)){ | |
buffer[j] = '\0'; | |
j = 0; | |
if(isKeyword(buffer) == 1) | |
cout<<buffer<<" is keyword\n"; | |
else | |
cout<<buffer<<" is indentifier\n"; | |
} | |
} | |
fin.close(); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
But from where does it read the file? I have placed the file but it gives error saying file not found