Continue statement is used for continuing a loop when an unexpected condition occurs. Basically this statement helps in passing control to the beginning of the loop. [Read more…] about What is Continue statement in C++
Switch ….Case Statement
The statement tests the value of a variable against a list of integer or character constants. If the variable matches any of the constants, statements associated with that constant (case) are executed. If there is more than one statement following any case, the statements are enclosed in curly brackets. Value of the switch variable should be provided before the switch statement. [Read more…] about Switch ….Case Statement
Write C++ program finds the sum of the series using do..while loop.
Write C++ program exit() function
This function causes the program to terminate from any portion of the program and does not have any return value. It has only one argument whose value is returned to the operating system when the program is terminated. This function is included in the <stdlib.h> header file. Hence this header file must be included in the beginning of the program. [Read more…] about Write C++ program exit() function
Write C++ program finds the real root of an equation using Newton Raphson technique.
The desired accuracy is upto 6 decimal places. The formula for finding a real root of an equation f(x) = 0 is given by [Read more…] about Write C++ program finds the real root of an equation using Newton Raphson technique.
Write C++ program Illustrates if statement.
Jump Statements in c++ or Goto statement
Jump statements are used to alter the flow of control unconditionally. That is, jump statements transfer the program control within a function unconditionally. The jump statements defined in C++ are break, continue, goto and return. In addition to these jump statements, a standard library function exit () is used to jump out of an entire program. [Read more…] about Jump Statements in c++ or Goto statement
Iteration Statements or Loops in C++
The statements that cause a set of statements to be executed repeatedly either for a specific number of times or until some condition is satisfied are known as iteration statements. That is, as long as the condition evaluates to True, the set of statement(s) is executed. The various iteration statements used in C++ are for loop, while loop and do while loop. [Read more…] about Iteration Statements or Loops in C++
Conditional Statements in C++ or if Statements
Conditional statements, also known as selection statements, are used to make decisions based on a given condition. If the condition evaluates to True, a set of statements is executed, otherwise another set of statements is executed. [Read more…] about Conditional Statements in C++ or if Statements
Write A C++ Program Using A For Loop With Continue.
Write A C++ Program Using A Break In For Loop To Exit.
Write A C++ Program To Use Backward Goto.
Write A C++ Program To Use Forward Goto.
Write A C++ Program To Print The First N Tables.
Write A C++ Program To Find The Average Of N Numbers By Using The For Loop.
Write A C++ Program To Simplest For Loop.
Write A C++ Program To Find The Average Of N Numbers Using Do-While () Loop.
Write A C++ Program To Find The Average Of N Numbers Using While() Loop.
Write A C++ Program To Solve The Function By Using The Nested Conditional Statement.
Write a C++ Program to detect whether the entered number is even or odd. Use nested switch () case statement.
Write A C++ Menu Driven Program
Write A C++ Program To Print The Color According To The Code.
Write a C++ Program to Display Time.
Write A C++ Program To Display The Color According To Its Code Which Will Illustrate The Concept Of Ladder If Statement.
Write A C++ Program To Find Greatest Number Among Three Integer Numbers.
In the example, the user is prompted to enter values for three numbers a, b and c. It then checks for the test condition (a>b). If this condition is true then it checks for the test condition (a>c) using the if-else block contained in it. If the condition (a>c) evaluates to true then the message a is the Greatest is displayed otherwise the message c is the Greatest is displayed. [Read more…] about Write A C++ Program To Find Greatest Number Among Three Integer Numbers.
Write A C++ Program To Verify is A Number is Divisible By 3 & 5 Or Not.
Write a C++ Program to Find out Whether It is An Odd Number Or Even Number. Any Integer is Input through the Keyboard.
This if-else statement prints whether an integer number n is odd or even. A number is even if it is divisible by 2. Thus, if expression n % 2 == 0 is true, number n is even; otherwise it is odd. Alternatively, we can write this if statement as follows: [Read more…] about Write a C++ Program to Find out Whether It is An Odd Number Or Even Number. Any Integer is Input through the Keyboard.
What is Control Statements?Explain
The Control Statements are used for controlling the Execution of the program there are the three control statements those are break, goto, continue. [Read more…] about What is Control Statements?Explain
What is to Loop? Type of Loop
A Computer is used for performing many Repetitive types of tasks The Process of Repeatedly performing tasks is known as looping .The Statements in the block may be Executed any number of times from Zero to Up to the Condition is True. The Loop is that in which a task is repeated until the condition is true or we can say in the loop will Executes all the statements are until the given condition is not to be false. [Read more…] about What is to Loop? Type of Loop