Write a program to exchange two variaables without temp
Answer Posted / kadher
void main()
{
int a=10,b=5;
a=a^b;
b=a^b;
a=a^b;
}
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
Explain goto?
What are the usage of pointer in c?
Explain the concept and use of type void.
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
What is a const pointer in c?
How the c program is executed?
code for find determinent of amatrix
What is the use of bit field?
Explain why C language is procedural?
What is difference between structure and union with example?
What are the rules for the identifier?
Describe the header file and its usage in c programming?
What is action and transformation in spark?
What is string function in c?
What is the purpose of the preprocessor directive error?