shaswat-indian / SS-Lab

Repository containing System Software Lab programs.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

Repository containing System Software Lab programs.


Languages

Language:C 99.2%Language:Lex 0.5%Language:Yacc 0.3%Language:C++ 0.0%