write a program to swap Two numbers without using temp variable.
Answer Posted / prasanna
Swapping two variables in a single line with no temporary
variable..
b=(a+b)-(a=b);
so.. simple..
Prasanna. (prasanna7287@yahoo.co.in)
| Is This Answer Correct ? | 351 Yes | 140 No |
Post New Answer View All Answers
What is null pointer constant?
What is p in text message?
What does void main return?
What is signed and unsigned?
How do you initialize pointer variables?
hi to every one .. how to view table pool after creating the pooled table? plz help me.. if any knows abt this ..
Why doesnt that code work?
What happens if a header file is included twice?
Do character constants represent numerical values?
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....
What are global variables and explain how do you declare them?
How do you print an address?
Is c pass by value or reference?
What is void c?
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream