Write a program to exchange two variaables without temp
Answer Posted / vijay
main()
{
int a, b;
a=a+b;
b=a-b;
a=a-b;
}
| Is This Answer Correct ? | 24 Yes | 5 No |
Post New Answer View All Answers
What is the difference between formatted&unformatted i/o functions?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
What is c value paradox explain?
What is identifier in c?
Give the rules for variable declaration?
What is meant by type specifiers?
What are called c variables?
Write a program to print factorial of given number using recursion?
How many levels of pointers can you have?
the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b
Explain about block scope in c?
Why isn't any of this standardized in c? Any real program has to do some of these things.
How to write a code for reverse of string without using string functions?
What is uint8 in c?
write a c program for swapping two strings using pointer