Structured Programming

switch(expression)

{

case constant: <statements>

case constant: <statements>

.

.

.

default: <statements>

}

for(i = 0; i < n; i++)