Name a secure way to check that the loop has terminated normally
Answers
Answered by
10
Answer:return stops execution and exits the function. return always** exits its function immediately, with no further execution if it's inside a for loop
Explanation:
Answered by
0
Answer:while(true){//statement}
Explanation:
to secure way to check has terminated
Similar questions