what will happen if we do not give any condition in the program while using GOTO Statement?
Answers
Answered by
1
Answer:
The goto statement is rarely used because it makes program confusing, less readable and complex. Also, when this is used, the control of the program won’t be easy to trace, hence it makes testing and debugging difficult.
C – goto statement
When a goto statement is encountered in a C program, the control jumps directly to the label mentioned in the goto stateemnt
Syntax of goto statement in C
Similar questions