Which statements in C programming are used for altering the normal flow of a program?
Answers
Answered by
2
Answer:
The break; continue; and goto; statements are used to alter the normal flow of a program
Answered by
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