how to swap two integers 1 and 32767 without using third
variable
Answer Posted / sathwika
a=b-a;
b=b-a;
a=a+b;
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
What is the difference between printf and scanf in c?
How can I find out how much free space is available on disk?
Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor
explain what are actual arguments?
Explain the bubble sort algorithm.
Do you have any idea how to compare array with pointer in c?
How can I dynamically allocate arrays?
Can true be a variable name in c?
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.
What language is windows 1.0 written?
What is difference between stdio h and conio h?
What is the difference between test design and test case design?
What is the general form of #line preprocessor?
which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above
In C language what is a 'dangling pointer'?