Programming Assignment

155 views 8:46 am 0 Comments August 5, 2023

CS 3120 – Programming Language Concepts
Programming Assignment #1

Objectives:

To program in the C/C++ programming language

To understand the lexical analysis phase of program compilation

Assignment:

The first phase of compilation is called scanning or lexical analysis. This phase interprets the input program as a sequence of characters and produces a sequence of tokens, which will be used by the parser.

Write a C/C++ program that implements a simple scanner for a source file given as a command-line argument. The format of the tokens is described below. You may assume that the input is syntactically correct. Your program should build a symbol table (a hash table is a good choice), which contains an entry for each token that was found in the input. When all the input has been read, your program should produce a summary report that includes a list of all the tokens that appeared in the input, the number of times each token appears in the input and the class of each token. Your program should also list how many times tokens of each class appeared in the input.

The token format:

keyword -> if | then | else | begin | end

identifier -> character | character identifier

integer -> digit | digit integer

real -> integer.integer

special -> ( | ) | [ | ] | + | – | = | , | ;

digit -> 0|1|2|3|4|5|6|7|8|9

character -> a|b|c … |z|A|B|C … |Z

More details:

Case is not used to distinguish keywords or identifiers.

The delimiters are space, tab, newline, and the special characters.

The token classes that should be recognized are keyword, identifier, integer, real and special.

Your final program must compile and run using a C++ compiler (your choice).

What to Hand In:

Email your source code files to [email protected] with the subject line of [your last name] + “Prog1”

Simple Scanner Example:

To get you started, take a look at this simple token reader source code that you may use to create your programming assignment.

http://www.mcs.csueastbay.edu/~bhecker/CS-3120/Examples/reader.cpp

Tags: , , , , , , , , , , ,