Semantics Influences Parsing
Example: Operator Precedence:
| A + B * C | |
| means: | A + (B * C) |
| not: | (A + B) * C |
Possible solutions:
if x > y and y > z then ...
generates errors; it must be written as:
if (x > y) and (y > z) then ...
Contents    Page-10    Prev    Next    Page+10    Index