How to swap two variables, without using third variable ?
Answers were Sorted based on User's Feedback
Answer / xyz
Congrats to all guys who have tried this.Everything u post
here is correct
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / not so good coder
I heard you put them into an excel spreadsheet, and just
move one cell over the other.
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / adarsh jain
We can do it using pointers easily...
See the code snippets below..
#include<stdio.h>
void swap(int *a, int *b);
int main()
{
int a = 10;
int b = 20;
swap(&a, &b);
return 0;
}
void swap(int *a, int *b)
{
printf("Before swapping , a = %d, b = %d\n", *a ,
*b);
*(a+1) = *a;
*a = *b;
*b = *(a+1);
printf("After Swapping, a = %d, b = %d\n", *a, *b);
}
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / saad bin saulat
Full code to swap variables without using a temporary variable is available at the below mentioned link:
http://bitsbyta.blogspot.com/2011/01/swapping-values-without-third-variable.html
Is This Answer Correct ? | 1 Yes | 1 No |
Answer / zee hassan
#include<iostream.h>
#include<conio.h>
main()
{
int a,b;
a=5;
b=10;
a=a+b; /*a=5+10=15*/
b=a-b; /*b=15-10=5*/
a=a-b;
cout<<"a="<<a<<endl;
cout<<"b="<<b<<endl;
getch();
}
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / swathi
a=5 b=10
b=b-a, a=a+b
b=10-5=5
a=5+5=10
b=5,a=10
Is This Answer Correct ? | 1 Yes | 1 No |
Answer / aditya raj
1st and 2nd methods r right!!
dere iz some problem wid 3rd..if a=0.
18th method...how u guy give dis type of solution?? is it
ryte?? suppose a>b den??
Is This Answer Correct ? | 0 Yes | 1 No |
main() { printf("%d", out); } int out=100;
main() { int i = 3; for (;i++=0;) printf(“%d”,i); }
Given n nodes. Find the number of different structural binary trees that can be formed using the nodes.
16 Answers Aricent, Cisco, Directi, Qualcomm,
Write a program using one dimensional array to assign values and then display it on the screen. Use the formula a[i]=i*10 to assign value to an element.
1 Answers Samar State University,
How do you create a really large matrix (i.e. 3500x3500) in C without having the program crash? I can only reach up to 2500. It must have something to do with lack of memory. Please help!
programming in c lanugaue programm will errror error with two header file one as stdio.h and other one is conio.h
#include<stdio.h> main() { int a[2][2][2] = { {10,2,3,4}, {5,6,7,8} }; int *p,*q; p=&a[2][2][2]; *q=***a; printf("%d..%d",*p,*q); }
main() { int i; clrscr(); printf("%d", &i)+1; scanf("%d", i)-1; } a. Runtime error. b. Runtime error. Access violation. c. Compile error. Illegal syntax d. None of the above
void main() { if(~0 == (unsigned int)-1) printf(“You can answer this if you know how values are represented in memory”); }
{ int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
how can i cast a char type array to an int type array
main() { char *p; p="%d\n"; p++; p++; printf(p-2,300); }