InterviewSolution
Saved Bookmarks
| 1. |
Write a flowchart to swap or interchange the values of two numbers |
|
Answer» flowchart to swap or interchange the VALUES of two numbersAn Algorithm, Flowchart and C-Code for swapping the 2 number (using THIRD variable)START.Input First number as A.Input Second number as B.Assign temp = A.Assign A=B.Assign B=temp.Print VALUE of A and B.END. |
|