LOOPING FUNDAMENTAL
LOOPING FUNDAMENTAL:-
1) looping is process for using repeatation of a statement.
2) in programming concept using twe types of loops.
1. define loop - specified the condition.
ex. display 1 to 10 numbers
display 1 to 10 even numbers
-in defined loop using while, dowhile and for loop.
2. undefined loop -
- in this types of loop is not specified the condition, this types of loops is contiously execute in a program.
EX. for(;;)
Comments
Post a Comment