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 to swap two integers 1 and 32767 without using third
variable

Answer Posted / sharath kumar

As int max valur is 32767. If we increment it it becomes -32768, so its a wrong way to do

a=1; b=32767;
a=-a; b=-b;
a=a+b; //-32768 with in range
b=a-b; //-1
a=a-b; //-32767
printf("%d%d",-a,-b);

Is This Answer Correct ?    4 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How can a program be made to print the name of a source file where an error occurs?

1188


How the c program is executed?

1113


What is int main () in c?

1056


Wt are the Buses in C Language

3182


5 Write an Algorithm to find the maximum and minimum items in a set of ā€˜n’ element.

2071


Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.

1071


string reverse using recursion

2408


What is the difference between strcpy() and memcpy() function in c programming?

1047


How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?

1048


What is pivot in c?

995


Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?

1061


What is a constant?

1016


Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.

2063


How are portions of a program disabled in demo versions?

1260


What is header file in c?

1039