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
Why do we use int main instead of void main in c?
c program for searching a student details among 10 student details
Do you know pointer in c?
How many bytes is a struct in c?
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above
What is the explanation for modular programming?
Write a simple code fragment that will check if a number is positive or negative.
I came across some code that puts a (void) cast before each call to printf. Why?
which is an algorithm for sorting in a growing Lexicographic order
What is anagram in c?
What does p mean in physics?
What are pointers really good for, anyway?
What is cohesion and coupling in c?
code for replace tabs with equivalent number of blanks
How many levels of pointers can you have?