how are these statements different from each other:
1. break
2. continue
3. System exit (0);
Answers
Answered by
0
Answer:
break causes an immediate exit from the switch or loop (for, while or do). exit() terminates program execution when it is called. break is a reserved word in C; therefore it can't be used as a variable name. exit() can be used as a variable name.
Similar questions