Flowchart to print name and address of a person:
A[Start] --> B{Get name}
B --> C{Get address}
C --> D{Print "Name: " + name}
D --> E{Print "Address: " + address}
E --> F[End]
The Flowchart
This simple flowchart shows the steps involved in printing a person's name and address:
Start (A)
Get the person's name (B)
Get the person's address (C)
Print "Name: " followed by the person's name (D)
Print "Address: " followed by the person's address (E)
End (F)