Programming Using C++: Presented By: Abhishek Sharma
Programming Using C++: Presented By: Abhishek Sharma
EveryC++ program must have at least onefunction called main(). When we run a C++ program, the
first statement executed will be at the beginningof main() and the last statement at the end of main().
Therefore, the main() is also knownas driver function as it drives the program.
The Von-Neumann architecture of computers supports only sequential processing. The normal flow
of execution of statements in a high-level language program is also in the sequential order, that is, each
statement is executed in its orderof occurrence in the program. Someproblems often require That the
normal flow of control bealtered depending ontherequirements.
C++ supports a numberof control structures to perform theprocessing
CONTROL STRUCTURES
CONTROL STRUCTURES
SEQUENCE
if(expression)
{
statement;
}
• whereif is the keyword, expression is a booleonexpression within a set of parenthesis and statement can be a
simple orcompoundstatement.
IF-ELSE STATEMENT
• It tests a condition. Statement 1 is executed whenthe condition is true otherwise
Statement 2 is executed.
switch(expression)
{
case constant 1: statement sequence1;
break;
case constant 2: statement sequence2;
break;
case constant 3: statement sequence3;
break;
.
.
.
case constant n-1: statement sequencen-1;
break;
default: statement
sequence;
}
REPETITIVE EXECUTION
• Repetitive Execution means a set of statements are executed again and again till the condition remains true
and if the condition is false, the statement next to those set of statements would beexecuted. There are3
types of statements to implement repetative execution (Iteration/Looping).
do
{
statement;
}
while(expression);
• After the evaluation the condition is checked again and if it is true, then again the body of for loop is
executed and then the arithmetic expression is checked again.
• The for loop is executed again and again till the condition remainstrue.
CONTINUE:continue is another jump statement like the break statement but the continue statement is
somewhat different from break. Instead of forcing termination, it forces the next iteration of the loop to
take place, skipping any code inbetween.
GOTO STATEMENT (UNCONDITIONAL BRANCHING)
• A gotostatement can transfer the program control anywherein the program. The target destination of
a gotostatement is marked by a label. Both of these
• i.etarget label and gotomust appear in the same function.
goto label;
THANK YOU
SUBMITTED BY:ABHISHEK SHARMA
SUBMITTED TO:MISS KIMMI MEHTA