Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 304 Bytes

README.md

File metadata and controls

18 lines (15 loc) · 304 Bytes

SS-Lab

Repository containing System Software Lab programs.

To execute Lex programs use the following commands

lex <lexFileName.l>
cc lex.yy.c -ll
./a.out

To execute Yacc programs use the following commands

lex <lexFileName.l>
yacc -d <yaccFileName.y>
cc lex.yy.c y.tab.c -ll
./a.out