Question: 3. Write a BNF grammar for the while language that includes assignments, while loop, and if-statements (with optional else-part.) The while lan- guage also

3. Write a BNF grammar for the while language that includes assignments,

 

3. Write a BNF grammar for the while language that includes assignments, while loop, and if-statements (with optional else-part.) The while lan- guage also includes arithmetic, comparison, and boolean expressions. Be- low is an example program in the language: b= true; y = 2; while (!b && y < x) { if ((y (y/x)*x) == 0) { b=false; } } if (b) { z = y/x; } else { z=1; }

Step by Step Solution

3.29 Rating (152 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

Here is a BNF grammar for the while ... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!