Terminal
The rounded rectangles, or terminal points, indicate the flowchart's starting and ending points.
![]() |
Process
The rectangle depicts a process such as a mathematical computation, or a variable assignment.
Note: the C++ language equivalent is the statement.
![]() |
Input/Output
The parallelograms designate input or output operations.
Note: the C++ language equivalent is cin or cout.
![]() |
Connectors
Sometimes a flowchart is broken into two or more smaller flowcharts. This is usually done when a flowchart does not fit on a single page, or must be divided into sections. A connector symbol, which is a small circle with a letter or number inside it, allows you to connect two flowcharts on the same page. A connector symbol that looks like a pocket on a shirt, allows you to connect to a flowchart on a different page.
On-Page Connector
![]() |
Off-Page Connector
![]() |
Decision
The diamond is used to represent the true/false statement being tested in a decision symbol.
![]() |
Module Call
A program module is represented in a flowchart by rectangle with some lines to distinguish it from process symbol. Often programmers will make a distinction between program control and specific task modules as shown below.
Note: C++ equivalent is the function.
Local module: usually a program control function.
![]() |
Library module: usually a specific task function.
![]() |
Flow Lines
Note: The default flow is left to right and top to bottom (the same way you read English). To save time arrowheads are often only drawn when the flow lines go contrary the normal.
![]() |







Pseudocode Examples for Control Structures




















"Used in the Computer Programming Fundamentals I course."