Question:Which of the following is the correct syntex of "for" loop?
A for (i = 0; i <= 5; i++;){ } B for (i = 0; i <= 5; i++){} C for i = 1 to 5end for D for (i <= 5; i++){}
+ AnswerB
+ Report