Question: The switch statement in C language has the following format. switch (expression) { case constant-expression: statement(s); break; /* optional */ /* you can have any

The switch statement in C language has the following format.

switch(expression) {

case constant-expression:

statement(s);

break; /* optional */

/* you can have any number of case statements */

default: /* optional */

statements(s);

}

Write an Extended Backus Naur Form (EBNF) description for a switch statement, using the following non-terminals < >.

specifies the switch statement abstraction specifies an expression,

specifies a constant-expression,

specifies a list of statements.

specifies a list of statements

switch, case, break, default: keywords in C.

-----------------------------------------------------------------------------------------------------

would what I have so far be correct?

switch () {{case : [break]} [default: ] }

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock 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 Databases Questions!