Computer Science, asked by oloyedeoyeyemijulius, 3 months ago

What will the statement “for (; ;)” cause when run in C++?

Answers

Answered by msene0
0

Answer:

a loop

Explanation:

for the record a for loop would like this

for(i=0; i<1; i++)

{

}

or

for(i=0; i<arr.length; i++)

{

}

Similar questions