answersLogoWhite

0

A 'goto' statement is an unconditional requirement to go to that part of the program. As such, statements like these cause programs to become unstructured and should be avoided if possible. Goto statements lead to some sloppy and unreadable logic.

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

How do you terminate statements in C?

All statements must be terminated with a semi-colon in C.


Control statement in c plus plus?

Control statements are statements that alter the flow of execution according to the evaluation of an expression (the condition). The C++ control statements are ifstatements, switch statements and the tertiary conditional operator, ?:.


What are statements that provide the meaning of a word?

Definitions


Meaning of else if statement in c plus plus?

it is used often in the context: if(condition is true) {following statements will be executed}; else[meaning that if the above condition is not true] {following statements will not be executed} for example: if(x == 3) {cout<< "condition is true"; y=4;} else {cout<< "condition is not true"; y=x-1}


What is statement in C programing?

One of the statements, obviously.


What ends every C statements?

A semi colon;


What is the difference between statements in c plus plus charconstp and char constp?

There is no difference. Both statements are invalid.


What is if-statement in c programming language?

One of the statements, obviously.


Short note on conditional statements in c?

Use them carefully.


What is difference between control statements and looping statements in c language?

differance between control statement and looping statement?


How to make decision making statements in c plus plus?

Decision making statements make use of conditional expressions. In C++ there are three possibilities: if/else, switch/case and the ternary operator (?:).


Different unconditional statement in C programming language?

The C programming language is generally made up of common conditional statements. Occasionally, unconditional statements such as test that are based on imperative commands.