Software Engineering
What is a Flowchart
Step-from and pseudo code program designs are both text-based, the statements are written. Flow charts are a graphical method of designing programs and once the rules are learned are very easy to draw. A well-drawn flow chart is also very easy to read since it basically uses just two symbols, two decision constructs. and two iteration constructs:
The Programming three control namely
- Sequence
- Selection
- Repetition
Using flow charts to design programs
Flowchart sample-1
Show the output for the following C code snippets and draw a flowchart for each of them.
- for(i = 2; i <= 6; i = i + 2)print ("%d\t", i + 1);
Comments
Post a Comment