Computer Science, asked by arav2710, 17 days ago

Write about GOTO Statement. with syntax

Answers

Answered by chevellarekha9339
1

Answer:

The goto statement is a jump statement which is sometimes also referred to as unconditional jump statement. The goto statement can be used to jump from anywhere to anywhere within a function. Syntax: ... In the above syntax, the first line tells the compiler to go to or jump to the statement marked as a label

Answered by sushilrajput0875
1

Explanation:

The goto statement is a jump statement which is sometimes also referred to as unconditional jump statement. The goto statement can be used to jump from anywhere to anywhere within a function. Syntax: Syntax1 | Syntax2 ---------------------------- goto label; | label: .

Similar questions