Computer Science, asked by shynimanu1234, 1 month ago

write the syntax for loop​

Answers

Answered by muneebusman
1

Answer:

for c++

while(condition)

Answered by RameshShrestha
4

Answer:

Syntax

The init step is executed first, and only once. This step allows you to declare and initialize any loop control variables. ...

Next, the condition is evaluated. ...

After the body of the 'for' loop executes, the flow of control jumps back up to the increment statement. ...

The condition is now evaluated again.

Explanation:

hope it's helpful

Similar questions