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 to swap Two numbers without using temp variable.

Answer Posted / biren

#include<stdio.h>
void main()
{
int a=2,b=3;
printf("before swap the value is:::");
printf("a=%d\tb=%d",a,b);
b=a+b-(a=b);
printf("after swap the value is:::");
printf("a=%d\tb=%d",a,b);
}

Is This Answer Correct ?    3 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain how do you sort filenames in a directory?

1075


How to delete a node from linked list w/o using collectons?

2823


How can I find the modification date and time of a file?

1124


How can I do peek and poke in c?

1135


a direct address that identifies a location by means of its displacement from a base address or segment a) absolute address b) relative address c) relative mode d) absolute mode

1173


Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)

1087


write a program to display all prime numbers

2016


Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor

3602


What is the use of typedef in structure in c?

1007


What are variables c?

1093


What is the use of gets and puts?

1093


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

1248


How can I sort more data than will fit in memory?

1164


Why can’t constant values be used to define an array’s initial size?

1438


What are the different categories of functions in c?

1179