Search Blog

Wednesday, March 30, 2022

How To Swap Values of Two Numbers?

            Here We Will Learn To Program C. I'll try To give my Best To Make you understand.

                                                               "Let's Begin"

A Program To Swap Value Of Two Numbers.

In Swapping Of Two Numbers the main Work is of Just 3 Lines.
c=a;
a=b;
b=c;
If you are A Mathematics Student Its easy to Understand.
If NOT then I'll Make U Understand. 2 Value is taken from User a&b.We Need To Swap Their Value.1st c=a; value of Given to c. Then Value of b Given to a. Then Value Of c Given To b.
Here How The Value is Swapped .


OUTPUT

Download Link Of Above Programme:-

How to Use it.
Download File >Go To Turboc3(or turboc folder)>bin>Paste File>
open Turbo c Application>File>open(or F3)>Select File
 
NOTE:- Above File Can Be Opened With Other Compilers(Like code blocks, visual studio, etc.), Some Changes Might Require.

 THANKS

No comments:

Post a Comment

How to Add Two Array(or Matrix) ?

    Here We Will Learn To Program C. I'll try To give my Best To Make you understand.                                                   ...