Computer Science, asked by kumaranand0950, 6 months ago

1.
2.
What is loop? Define for loop with syntax and example.​

Answers

Answered by jksivaselan
1

Explanation:

It's a flowchart of loop........

Attachments:
Answered by shadow1208
1

Explanation:

A loop is used for executing a block of statements repeatedly until a particular condition is satisfied

For loop - a for-loop (or simply for loop) is a control flow statement for specifying iteration, which allows code to be executed repeatedly.

Syntax of a For Loop

for(initialization; condition ; increment/decrement)

{

C++ statement(s);

}

PLZ FOLLOW ME

Similar questions