0
What key words are used for FOR LOOP in a program?.
Key words in C++
2 odpowiedzi
+ 2
for(initialisation;test condition;increment/decrement){statements}
+ 1
There are three types of loops in C++ programming.
The for loop is written in C programming using the keyword for. For example:
for (i=0; i< 9;++i){
printf("%d ",i); }