The loop will be:
int lo, hi, result;
result = 0;
//the loop will be as follows:
for(i = lo; i <= hi; i++)
{
result = i++;
}
A loop is a sequence of instruction s that is continually repeated until a certain condition is reached.
The above loop means that the integer (i) will start from the value of lo, and stop when the value of i is equal to hi
Learn more about loop on:
https://brainly.com/question/26568485
#SPJ12