Welcome to the World of Online Learning:
Hello Friends “This blog helps you to learn C programming concepts. You can learn C language at your own speed and time. One can learn concepts of C language by practicing various programs given on various pages of this blog. Enjoy the power of Self-learning using the Internet.”

Write a C program to Swap values of two Variables
Program:Swap values of two Variables
/* Swap the values of two Variables using three variables */
#include<stdio.h>
int main()
{
int a;
int b;
int c;
printf(“Type value of A : “);
scanf(“%i”,&a);
printf(“\nType value of b : “);
scanf(“%i”,&b);
c=a;
a=b;
b=c;
printf(“A : %i”,a);
printf(“\nb : %i”,b);
return 0;
}