Showing posts with the label Control StructuresShow all

Switch Statement In C | Programmerdouts

Switch Statement Till now we have Use if else statement to choose one of the many alternatives. But when number of alternative increases the , complexity of the program increases and then if else statements becomes very complex. To Make such problems easie… Read more

for loop in C | Programmerdouts

for Loop It works as while loop , But Syntax is very good as compare to other two loops. Condition is checked before entering in the body of loop. You can also call this as ,entry control loop. Many programmer Prefer to go with is loop , because In this loo… Read more