Or
/* write a program in c language change between number */
Watch Video :-
Example :-Watch Video :-
Input number
A= 5 // A is variable
B = 6 // B is variable
Output –
/* Swapping number */
A = 6
B = 5
understand algorithm
C = a; // C is variable. Value of A variable copy in Value of C Variable
A = B; // Value of A variable copy in Value of B variable.
B = C ; // Value of B Variable copy in Value of C variable
C = A ; // A = 5; than After Copy C = 5;
A = B; // B = 6; than After copy A = 6,
B = C ; // C = 5 ; than before copy b = 5;
Output ;-
A = 6 ;
B = 5;

0 Comments
If you have any doubts about the Programming language & Basic Computer. Please let me know.