C Programming
C Programming

Swaping of 2 numbers

Swapping of 2 numbers

C Programming
C Programming

Swapping of 2 numbers

 

#include<stdio.h>

int main()

{

int a ;

printf(“Enter a :  “);

scanf(“%d,&a);

int b ;

printf(“Enter b :  “);

scanf(“%d,&b);

int temp;

temp = a ;

a = b ;

b = temp ;

printf(“The value of a is %d\n, a);

printf(“The value of b is %d\n,b);

return 0;

}

 

 


 

Topics Covered :

  • swapping of two numbers 
  • swap two numbers
  • swapping of 2 number in c program
  • swapping in c language
  • c tutorial for beginners
  • swapping in c programming 
  • c language swapping program

 

 


 

Thanks for reading this blog. Hope you get satisfied with the blog and definitely this blog must have valued your time and effort of reading.

Take a time to connect our other digital creations such as Instagram , Facebook and Youtube.

 

🧑‍💻🧑‍💻 Social Media Links of Tech DCode :

👉🏻 YouTube : https://www.youtube.com/channel/UCjJnEdeugftBwQ3yMuD4B_A
👉🏻 Instagram : https://www.instagram.com/thetechdcode/
👉🏻 Facebook Page : https://www.facebook.com/thetechdcode
👉🏻 Twitter : https://twitter.com/thetechdcode
👉🏻 Telegram Channel : https://t.me/thetechdcode
👉🏻 Tech DCode Linktree : https://linktr.ee/thetechdcode
👉🏻 My Personal Handles : https://linktr.ee/virtualshivamin

🧑‍💻🧑‍💻 Social Media Links of SHIVAM SINGH (OWNER) :

👉🏻 Instagram : https://www.instagram.com/virtualshivamin/
👉🏻 Facebook Page : https://www.facebook.com/virtualshivamin/
👉🏻 Twitter : https://twitter.com/virtualshivamin/
👉🏻 Personal Linktree : https://linktr.ee/virtualshivamin 

Leave a Reply

Your email address will not be published. Required fields are marked *