Computer Science, asked by riaouat143, 2 months ago

What type of labels must be used in C++?

Answers

Answered by ajha22480
10

Answer:

Your Answer:-

Explanation:

label: | goto label; In the above syntax, the first line tells the compiler to go to or jump to the statement marked as a label. Here label is a user-defined identifier which indicates the target statement. The statement immediately followed after 'label:' is the destination statement.

Similar questions