Skip to content

rickydebojeet/compiler-programs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 

Repository files navigation

compiler-programs

This Repository contains C, LEX and YACC files made during our couse of Compiler Design (CS601).

Pre-Requisites

Following package are needed for running the c, lex and yacc files. Please run the following commands:

Run the update command (just in case)

sudo apt-get update

then:

sudo apt-get install gcc 
sudo apt-get install lex
sudo apt-get install bison

or instead of lex you can install flex using

sudo apt-get install flex

Usage

For compiling the C files:

gcc <filename.c>
./a.out

For compiling the lex files:

lex <lexfile.l> or flex <lexfile.l>
gcc lex.yy.c
./a.out

For compiling the yacc files (Along with the lex files):

yacc -d <yaccfile.y>
lex <lexfile.l>
gcc lex.yy.c y.tab.c
./a.out

Contents

1. C Programs

A finite automata is implemented using C programming language which can detect:

2. Lex Programs

3. Yacc Programs

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D

👍 Credits

License

MIT

About

Programs for Compiler Design course CS601 using Lex and C.

Topics

Resources

License

Stars

Watchers

Forks

Contributors 2

  •  
  •