I want to ask a question about C programming
How am I suppose to do a program using switch (case) and while statement only??
Can anyone give me an example. I'm blank out
I'm using code blocks btw
Answers
Answered by
0
You should do it by taking switch()
and the start case and inside the case take while loop
Mark as brainlist
tanushreeshankar:
Give me example
Answered by
0
switch(expression)
{
case 1:
statement;
break;
case 2:
statement;
break;
.
.
default:
default statement;
break;
}
Similar questions