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

https://github.com/rabishah/Mini-C-Compiler-using-Flex-And-Yacc

A simple mini c compiler
https://github.com/rabishah/Mini-C-Compiler-using-Flex-And-Yacc

Last synced: 7 months ago
JSON representation

A simple mini c compiler

Awesome Lists containing this project

README

          

This is a simple Mini C Compiler using Lex & Yacc.

Compilation Steps
$ lex c.l
$ yacc c.y
$ gcc y.tab.c -ll -ly
$ ./a.out [filename]