goto statement requires more time for execution by the compiler
Answers
Answered by
0
Answer:
The goto statement in C Programming is useful to alter the flow of a program. When the compiler reaches the goto statement, then it will jump unconditionally ( both forward and backward ) to the location specified in the goto statement (we called it as a label).
Explanation:
Similar questions