sunchit17 / VTU-17CSL67-SSOS-LAB

SSOS Lab Programs VTU 6th Sem

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SSOS-Lab-Programs

SSOS Lab Programs VTU 6th Sem


How to run programs in Windows OS:

  • 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

Compile Lex Programs :

gedit pgm.l
lex pgm.l
cc lex.yy.c
./a.out

Compile LEX & YACC both :

gedit pgm.l
gedit pgm.y
lex pgm.l
yacc -d pgm.y
cc lex.yy.c y.tab.c 
./a.out

Compile C Programs :

gedit pgm.c
cc pgm.c
./a.out

About

SSOS Lab Programs VTU 6th Sem


Languages

Language:C 99.2%Language:Yacc 0.4%Language:Lex 0.3%Language:Roff 0.0%