Computer Science, asked by davidjannu1505, 9 months ago

What is loop and who it work give program to prove your and answer

Answers

Answered by Anonymous
0

In looping, a program executes the sequence of statements many times until the stated condition becomes false.

{

for(int I=0;I<size;I++)

{

cout<<"example of loop";

}

}

Similar questions