Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

write a program in C to swap two variables

Answer Posted / senthil mca sns

#include<stdio.h>
#include<conio.h>
void main()
{
int a,b;
clrscr();
printf("Enter the a value:");
scanf("%d",&a);
printf("Enter the b value:");
scanf("%d",&b);
b=a+b-(a=b);
printf("After Swapping a=%d,b=%d",a,b);
getch();
}

Is This Answer Correct ?    3 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write a C program to count the number of email on text

1852


What does static variable mean in c?

1059


What are types of structure?

1063


What is selection sort in c?

1014


What does s c mean on snapchat?

1036


difference between Low, Middle, High Level languages in c ?

2023


Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?

1073


What is volatile variable in c?

1051


Explain the properties of union. What is the size of a union variable

1129


Is main a keyword in c?

1082


Why c is called free form language?

967


Is c object oriented?

909


What is the use of sizeof?

969


diff between exptected result and requirement?

1989


Explain how can a program be made to print the line number where an error occurs?

1147