Computer Science, asked by timepass6689014, 6 hours ago

Which statements in C programming are used for altering the normal flow of a program?​

Answers

Answered by actshivamraj123
2

Answer:

The break; continue; and goto; statements are used to alter the normal flow of a program

Answered by pragyakirti12345
0

Answer: break, continue, goto

Explanation:

break, continue, goto are used in C programming for altering the normal flow of a program.

These are called the jump statements. Jump statements in C are used to interrupt the normal flow of the program or escape the particular section of the program.

Similar questions