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...


How can u swap 2 variables in C without using 3rd variable?

Answers were Sorted based on User's Feedback



How can u swap 2 variables in C without using 3rd variable?..

Answer / sj

main()
{
int a=20,b=30;
clrscr();
a=a+b;
b=a-b;
a=a-b;
printf("%d%d",a,b);
getch();
}

Is This Answer Correct ?    38 Yes 4 No

How can u swap 2 variables in C without using 3rd variable?..

Answer / deepa

main()
{
int a=20,b=30;
clrscr();
b=a+b;
a=b-a;
b=b-a;
printf("%d%d",a,b);
getch();
}

Is This Answer Correct ?    5 Yes 4 No

How can u swap 2 variables in C without using 3rd variable?..

Answer / rahul

#include<stdio.h>
#include<conio.h>
void main()
{
int a=20,b=30,c;
clrscr();
a=a+b;
b=b+a;
c=a+b;
c=b-a;
printf("swapping two variables using 3rd variable");
scanf("%d%d%d,a,b,c);
getch();
}

Is This Answer Correct ?    2 Yes 8 No

Post New Answer

More Manual Testing Interview Questions

can u merge 10GUI map files into a single GUI map file in winrunner?

0 Answers   QA,


What is meant by Decision Table Testing Technique?

9 Answers   Avineon,


what is use case

1 Answers  


What are the activities involved by the Test engineer (having 2+ yrs of exp).

1 Answers   Covansys, SLK Software,


Write 5 Test Cases for ATM From Security Point of View ?

2 Answers  


what are the different statuses of test cases?

11 Answers  


what is testing?

5 Answers   Naukri.com, RealTech, TCS, Value Labs,


7. What types of Web accessibility information do you look for on the Internet?

0 Answers  


what r the best jobsites for manual and automation testing? except testingken.com

0 Answers  


when doing regression testing, how can we know that other screen or module are affected?

4 Answers   Aspire,


what is the difference between Load,Stress and Volume Testing?

11 Answers   DELL, Trigent,


Give me different methodologies used in testing?

4 Answers   Cap Gemini,


Categories