Save
...
Computer Programming 2
Week 2 to 3 C++ Programming Fundamentals Review
Sequence Structure
Save
Share
Learn
Content
Leaderboard
Share
Learn
Created by
Marc
Visit profile
Cards (7)
In C++, a
sequence structure
where each statement is executed sequentially by default in the order they appear in the code.
In C++, a sequence structure where each statement is executed
sequentially
by default in the order they appear in the code.
Sequence Structure
- It is also called the linear execution of statements.
Sequence Structure - It is also called the
linear execution of statements.
Characteristics of Sequence Structure
Each statement is executed
one after the other.
There are no
conditions
or
repetitions
involved.
Characteristics of Sequence Structure
Each statement is executed one after the other.
There are no conditions or repetitions involved.
This picture is an example of
Sequence Structure