Flowcharts
Flowcharts
Introduction
Process symbol is used to symbolize the process of computation in the algorithm or programs.
Decision symbol is used to symbolize a condition that would be answerable by either True or False.
Input /Output symbol is used to symbolize the process of accepting or displaying data in the flowchart.
Connector symbol is used to symbolize the connection in the flowchart specially if there are
loops or iteration.
START
Example
R = I unit
pie = 3.1416
AC = pie * R * R
print AC
END