116.
int myCounter = 10;
int inloop = 0;
for (myCounter = 0; myCounter != 100; myCounter = myCounter + 2)
{
inloop++;
}
After the loop is finished, what will the value of inloop be?
View Description
The answer has been verified