0
votes
1answer
20 views
Insert text in the input file in Lex (with C)
Hey!
I'm trying to help a friend in a college assignment, but i kind of forgot a lot of C an Lex.
The thing is, we are trying to parse a HTML and a correspondent CSS file and add to a tag it's …
0
votes
3answers
79 views
Why Use Lexical Analyzers?
Hello,
I'm building my own language using Flex, but I want to know some things:
Why use lexical analyzers?
There are going to help me in something?
Are they obligatory?
Thanks.
0
votes
2answers
27 views
My flex/yacc program compiles differently on two different linux machines
One one machine, everything compiles fine. On another machine, it complains about the -ly option when I use gcc to create the output file. If I remove the -ly option, then it makes the program, but …
-1
votes
0answers
38 views
Could you give me a correctly formatted program example for this grammar? [closed]
The lex file:
/* C-Minus BNF Grammar */
%{
#include "parser.h"
#include <string.h>
%}
%union
{
int intval;
struct symtab *symp;
}
%token ELSE
%token IF
%token INT
%token RETURN
%token …
0
votes
2answers
15 views
The program I made with flex/yacc doesn’t always recognize identifiers
I made a program that is supposed to recognize a simple grammar. When I input what I think is supposed to be a valid statement, I get an error. Specifically, if I start out with an identifier, I …
0
votes
3answers
43 views
Using the regular expression [\[\];] in flex
If I have the following in my flex file, what does it do?
[\\[\\];] { return yytext[0]; }
1
vote
1answer
28 views
How to return literals from flex to yacc?
In my yacc file I have things like the following:
var_declaration : type_specifier ID ';'
| type_specifier ID '[' NUM ']' ';' ;
type_specifier : INT | VOID ;
ID, NUM, INT, and VOID …
0
votes
2answers
23 views
Why do I get a syntax error in my program made with flex and yacc?
I made a program that is supposed to recognize a simple grammar. When I input what I think is supposed to be a valid statement, I get an error. Specifically, if I type
int a;
int b;
it doesn't …
0
votes
3answers
26 views
How does a lexer return a semantic value that the parser uses?
Is it always necessary to do so? What does it look like?
0
votes
1answer
15 views
Does this program grammar only recognize variables with the name ‘ID’?
I need to make a scanner in lex/flex to find tokens and a parser in yacc/bison to process those tokens based on the following grammar. When I was in the middle of making the scanner, it appeared to …
0
votes
1answer
33 views
When is the symbol table for this program built
When I run make on the following Makefile, when is the symbol table built, if it even is?
LEX = flex
YACC = yacc
CC = gcc
calcu: y.tab.o lex.yy.o
$(CC) -o calcu y.tab.o lex.yy.o -ly -lfl
…
-2
votes
0answers
97 views
Why doesn’t this calculator program work correctly? [closed]
The program compiles without any errors. Here are the different parts:
parser.h
/*
* Header for calculator program
*/
#define NSYMS 20 /* maximum number of symbols */
struct symtab {
char …
1
vote
1answer
28 views
What’s wrong with this lex file?
I have a Makefile so that when I type make the following commands run:
yacc -d parser.y
gcc -c y.tab.c
flex calclexer.l
gcc -c lex.yy.c
But then after this I get the following error messages:
…
1
vote
3answers
88 views
What’s the difference between a parser and a scanner?
I already made a scanner, now I'm supposed to make a parser. What's the difference?
0
votes
1answer
49 views
Handling error conditions in Lex rather than Yacc?
Suppose I have a lex regular expression like
[aA][0-9]{2,2}[pP][sS][nN]? { return TOKEN; }
If a user enters
A75PsN
A75PS
It will match
But if a user says something like
A75PKN
I would like …
