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
  1. Sequence
  2. Selection
  3. Repetition
Most important are



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.

    1. for(i = 2; i <= 6; i = i + 2)
      print ("%d\t", i + 1);







Comments

Popular Posts