This repository contains all the programs for System Software and Operating System Lab (Sub Code: 17CSL67)
sudo apt update
sudo apt install flex bison
lex program_name.l
cc lex.yy.c
./a.out
lex program_name.l
yacc -d program_name.y
cc lex.yy.c y.tab.c
./a.out