Answer:
result=0;
for (i=lo ; i<=hi; i++){
result += i;
}
Explanation:
The question says result was declared but not initialized, so using result without initializing it to 0 would throw an error as result would be undefined and you can't add a number to undefined
Another way to do it to keep everything inside the loop would be
for (i=lo ; i<=hi; i++){
if (i==lo) result= 0;
result += i;
}
but this is impractical since it would add unnecesary operations in each cycle of the loop
Full of emotion and not like a robot
Prior to purchasing the universal garage door remote, verify the brand and model number of the garage door opener are included, and that the frequencies of the opener and the universal remote match. Find the brand and model number that matches the garage door opener. Key that code into the remote and press enter. Test the garage door by pressing the button on the remote. If the code works, the garage door opens and closes on cue
Answer:
No Question and I don't really know the answer Pleasesend the question again