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
Why does notstrcat(string, "!");Work?
What is the newline escape sequence?
How can I convert a number to a string?
How many loops are there in c?
Explain how can you tell whether two strings are the same?
With the help of using classes, write a program to add two numbers.
Can we assign string to char pointer?
How we can insert comments in a c program?
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
How can you tell whether a program was compiled using c versus c++?
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(); }
What is a constant and types of constants in c?
What is an arrays?
Which of these functions is safer to use : fgets(), gets()? Why?
What is the purpose of 'register' keyword?