+ 4
The switch statement
can anyone describe aboute the switch statement in C language.please help me.
3 Respostas
0
https://www.sololearn.com/learning/2924
It's there in the C course.
0
It is very much similar to multiple if statements. It is better to use switch instead of multiple IFs. There are three types of control statements: Conditional (Selection) statements, Loop (Iterative) statements and jump statements. In conditional statements, u will study about switch...
It is also used in C++ and C#...