What will the statement “for (; ;)” cause when run in C++?
Answers
Answered by
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