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 / akash

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

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the advantages of using Unions?

1115


how to create duplicate link list using C???

2556


Explain #pragma statements.

1043


How will you divide two numbers in a MACRO?

1129


An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?

1230


Find duplicates in a file containing 6 digit number (like uid) in O (n) time.

3241


What is the difference between break and continue?

1508


How many main () function we can have in a project?

1105


What is the equivalent code of the following statement in WHILE LOOP format?

1297


#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }

1181


What is a memory leak? How to avoid it?

1334


How would you obtain the current time and difference between two times?

1285


.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }

1290


what is the difference between north western polytechnique university and your applied colleges?? please give ur answers for this. :)

2402


What are variables c?

1047