This repository contains lab programs for System Software and Operating System laboratory (17CSL67).
sudo apt update
sudo apt install flex bison
lex prog.l
cc lex.yy.c
./a.out
lex prog.l
yacc -d prog.y
cc lex.yy.c y.tab.c
./a.out
Press CTRL+d to terminate the Lexer process and view the final output of the program.