Computer Science, asked by Benzersiz0, 1 month ago

how are these statements different from one another (a) break (B) continue (c) system dot exit (0)​

Answers

Answered by Anonymous
5

Answer:

exit() is a standard library function. 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

Answered by Anonymous
6

Explanation:

exit() is a standard library function. 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.

Similar questions