An open API service indexing awesome lists of open source software.

https://github.com/yassin522/compiler_project

Simple C Compiler Project at Damascus University using Flex and Bison
https://github.com/yassin522/compiler_project

bison c flex lex yacc

Last synced: over 1 year ago
JSON representation

Simple C Compiler Project at Damascus University using Flex and Bison

Awesome Lists containing this project

README

          

# Compiler_Project

## Test
### you can test the project by running ./a.exe test1.c in terminal

---

## Compilation Steps
* flex lex.l
* bison -d parser.y
* gcc parser.tab.c lex.yy.c -w
* ./a.exe test1.c