GayatriDunakhe / Programs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Run ATL Programs on browser-

Add your all file in xampp htdocs folder

on browser put this -

localhost/filename.html

if your created your own folder in htdocs folder then-

localhost/foldername/filename.html

Never forget to start apache and mysql on xampp control panel

Run CD programs on terminals-

Window -

flex program_name.l
gcc lex.yy.c
./a.exe

Linux -

lex program_name.l
cc lex.yy.c -ll
./a.out

if program containt .y file- 

lex program_name.l
yacc -d program_name.y
cc lex.yy.c y.tab.c -ll
./a.out

About


Languages

Language:C 94.1%Language:HTML 3.3%Language:PHP 1.6%Language:Lex 0.6%Language:Roff 0.3%Language:Yacc 0.1%