0
votes
2answers
22 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 mak …
-1
votes
0answers
37 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
…
1
vote
1answer
26 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 …
0
votes
2answers
14 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 …
0
votes
3answers
42 views
Using the regular expression [\[\];] in flex
If I have the following in my flex file, what does it do?
[\\[\\];] { return yytext[0]; }
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;
i …
0
votes
0answers
10 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
13 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 scann …
0
votes
1answer
28 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.y …
-2
votes
0answers
86 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 */
str …
1
vote
3answers
82 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?
1
vote
1answer
26 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 e …
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
A75 …
0
votes
2answers
91 views
what is the use of tokens.h when I am programming a lexer?
I am programming a lexer in C and I read somewhere about the header file tokens.h. Is it there? If so, what is its use?
0
votes
5answers
132 views
Textual analysis of large documents
I have a project where I need to compare multi-chapter documents to a second document to determine their similarity. The issue is I have no idea how to go about doing this, what ap …
