Computer Science, asked by chandanapurured9841, 9 months ago

For Loop का Syntax लिखिए।

Answers

Answered by poojan
2

Answer:

Normal for loop:

for( initialization; condition; increment/decrement)

{

body of the loop

}

Infinity loop:

for(;;)

{

body of the loop

}

Similar questions