write a program to swap Two numbers without using temp variable.
Answer Posted / harika
main()
{
int a=2,b=3;
a^=b^=a^=b;
printf("%d,%d",a,b);
}
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain c preprocessor?
the question is that what you have been doing all these periods (one year gap)
What are multidimensional arrays?
What does p mean in physics?
what are bit fields? What is the use of bit fields in a structure declaration?
What is the difference between pure virtual function and virtual function?
Why c is called object oriented language?
What is floating point constants?
how we can make 3d venturing graphics on outer interface
Write a program with dynamically allocation of variable.
What is structure of c program?
Explain the use of 'auto' keyword in c programming?
Explain goto?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
What are pointers? What are different types of pointers?