Get premium membership and access questions with answers, video lessons as well as revision papers.

What is a statement? Explain jump statement with syntax

      

What is a statement? Explain jump statement with syntax.

  

Answers


KIZITO
A statement is a command given to the computer that instructs the computer to take a specific action, such as display to the screen, or collect input.
Jump statements cause an unconditional jump to another statement elsewhere in the code
while(1) while(1)
{ {
. .
. .
. .
goto label_1; continue;
. .
. .
. .
label_1:
; ;
}
Kizito123 answered the question on April 22, 2018 at 11:37


Next: What documents that may be required by the registrar of companies in order to register a public limited company?
Previous: What is an inline function? Write a c++ program to find the maximum of two numbers using inline function?

View More Computer Science Questions and Answers | Return to Questions Index


Learn High School English on YouTube

Related Questions