athultr1997 / FLEX_examples

Contains code snippets and program examples for creating lexical analysers using FLEX

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FLEX_examples

Contains code snippets and program examples for creating lexical analysers using FLEX

Compilation

For compiling any .lex file, go to the specific folder and type the following commands:

>> flex <file_name>.lex
>> gcc lex.yy.c
>> ./a.out
(Program running...)

About

Contains code snippets and program examples for creating lexical analysers using FLEX


Languages

Language:C 97.6%Language:Lex 2.4%