- is made up of a null expression followed by a semicolon. - a null expression is an empty expression
( ; )
Null Statement
58
New cards
- Expression and function call statements expression; function_call();
Simple Statement
59
New cards
- or also called as block is formed by placing more than one statement inside curly braces ({}). { statement; statement; }
Compound Statement
60
New cards
Conditional branches - make decision before branching: and its 2 type
Decision Statements
Single-decision branch Multi-decision branch
61
New cards
Single-decision branch - ____
- if/else
62
New cards
Multi-decision branch
– switch/case
63
New cards
Decision statements are actually part of a larger category statements known as ??
branches
64
New cards
2 kinds of branch statements?
Conditional branches
Unconditional branches
65
New cards
involves making one or more decisions before branching, and are thus referred to as single-decision or multi-decision branches.
Conditional branches
66
New cards
direct branches which involve no decision. The goto statement is an example of an unconditional branch.
Unconditional branches
67
New cards
The___ statement is a conditional, single-decision branch.
if
68
New cards
The if statement has the general format of ?
if(expression) statement;
69
New cards
IF STATEMENTS may be a ____ statement or ___ statement.
simple compound
70
New cards
it allows you to check between multiple test expressions and execute different statements.
IF ELSE IF STATEMENTS
71
New cards
a conditional, multi-decision branch. The previous example of successive comparison of equality or value of the operand is so common in programming, a special construct exist in C to handle such comparison.
SWITCH-CASE STATEMENTS
72
New cards
____ is evaluated and its value is compared.
Expression
73
New cards
The expression and the constant compared against must be an _____ constants or expressions. They may NOT contain variables.
integer or character
74
New cards
The default case is optional, but if it exists there can be ____. It may occur anywhere in the list of case clauses but usually occur at the end
only one
75
New cards
One of the fundamental properties of a computer is its ability to repetitively execute a set of statements.
ITERATIVE STATEMENTS
76
New cards
These looping capabilities enable the programmer to develop concise programs containing repetitive processes that could otherwise require thousands of program statements to perform.
ITERATIVE STATEMENTS
77
New cards
C contains three looping constructs:
The while statement
The for statements
The do/while statements
78
New cards
The _____ statements may be described as test-before-execute. If the controlling condition results initially to a zero or false value, the body of the loop is never executed.
while and for
79
New cards
The ____statement on the other hand may be considered as execute-before-test. The body of the loop is always executed at least once.
do-while
80
New cards
The _____is used to execute a statement as long as a condition remains true.
with a syntax of
While (expression){ //statement }
while loop
81
New cards
The conditional expression, of course, may be a _____ or ____.
relational or arithmetic
82
New cards
_____ is usually used when the number of times the loop must be executed is not known in advance.
while loop
83
New cards
The ____ is generally used for counted loops.
for statement
84
New cards
The ______ will execute a statement and then evaluate a conditional expression.
do-while loop
85
New cards
The statements____ and ___ are used to interrupt the normal flow of loops and the switch statement.
break AND continue
86
New cards
The ____ is similar to the break statement, except it does not cause the loop to terminate. Rather it causes the loop to be continued.
continue statement
87
New cards
The ____ causes the flow of the program to branch to the statement immediately following the appropriate label.
goto statement
88
New cards
A _____is a name that is formed with the same rules in identifiers and must be immediately followed by a colon.
label
89
New cards
The _____ interrupts the normal sequential flow of a program, without involving a decision.
goto statement
90
New cards
Since goto statement is an example of _____ it is difficult to use without the help of conditional branch statements.
unconditional branch
91
New cards
We can properly use goto statements by using some of the _____to avoid infinite looping execution.