What is loop and who it work give program to prove your and answer
Answers
Answered by
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