write a program to swap Two numbers without using temp variable.

Answer Posted / sams

Two numbers are input through the keyboard into two
locations C and D. Write a program to interchange the
contents of C and D.



#include<stdio.h>

#include<conio.h>
void main( )
{
int a,b,c;
clrscr( );
printf("Enter A: ");
scanf("%d",&a);

printf("Enter B: ");
scanf("%d",&b);

c=a;
a=b;
b=c;

printf("\n The New Value Of A is : %d",a);
printf("\n The New Value Of B is : %d",b);


getch();
}

Is This Answer Correct ?    6 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why does notstrcat(string, "!");Work?

872


What is the newline escape sequence?

804


How can I convert a number to a string?

806


How many loops are there in c?

794


Explain how can you tell whether two strings are the same?

786


With the help of using classes, write a program to add two numbers.

826


Can we assign string to char pointer?

790


How we can insert comments in a c program?

841


what are the advanced features of functions a) function declaration and prototypes b) calling functions by value or by reference c) recursion d) all the above

870


How can you tell whether a program was compiled using c versus c++?

817


find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }

2047


What is a constant and types of constants in c?

830


What is an arrays?

817


Which of these functions is safer to use : fgets(), gets()? Why?

853


What is the purpose of 'register' keyword?

876