answersLogoWhite

0

Jump Statements

Branching is performed using jump statements, which cause an immediate transfer of the program control. The following keywords are used in jump statements:

  • break
  • continue
  • goto
  • return
User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

What is the various formatting input and output statements?

In C, there are no input and output statements (formatting or otherwise); I/O is performed via functions.


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 the various control statement in C language?

Control statements are the statements that control the flow of program execution. For eg: loops: For, While, Do-While, decision making using if-then-else or switch-case and there's goto to transfer control.


What is flow control statement used in C programming?

Flow control statements are those statements that cause execution to branch or jump to a new section of code, often upon evaluation of some conditional expression (a decision statement such as an if or switch statement). The break, continue, goto and return statements are all flow-control statements. Function calls are not considered to be flow control statements since functions can be inline expanded (by the compiler) and would therefore follow the normal flow of execution.


What is statement in C programing?

One of the statements, obviously.


What ends every C statements?

A semi colon;


Mission and vision statements of various companies?

The purpose of mission and vision statements of various companies is to show prospective customers what their vales and aims are in so far as to what they promise they can deliver. Most companies will have their mission and vision statements visible on their website.


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

There is no difference. Both statements are invalid.


Which device is NOT managed by BIOS a. hard drive b. CPU c. jump drive d. RAM?

c. jump drive


What is if-statement in c programming language?

One of the statements, obviously.


Short note on conditional statements in c?

Use them carefully.