• Stars
    star
    110
  • Rank 315,617 (Top 7 %)
  • Language
    C
  • Created over 12 years ago
  • Updated almost 5 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A simple mini c compiler
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]