SSOS Lab Programs VTU 6th Sem
-
Follow this video to download VirtualBox and Ubuntu ISO file
-
Run, in Ubuntu VM : sudo apt-get install flex bison to install the required packages
gedit pgm.l
lex pgm.l
cc lex.yy.c
./a.out
gedit pgm.l
gedit pgm.y
lex pgm.l
yacc -d pgm.y
cc lex.yy.c y.tab.c
./a.out
gedit pgm.c
cc pgm.c
./a.out