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
Write a program to reverse a linked list in c.
Is it valid to address one element beyond the end of an array?
program to convert a integer to string in c language'
How do you declare a variable that will hold string values?
What is define c?
What is bss in c?
What is a list in c?
Which is the best website to learn c programming?
What is the difference between the local variable and global variable in c?
What is register variable in c language?
general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only
What is strcmp in c?
What is realloc in c?
Explain Basic concepts of C language?
What is the difference between union and structure in c?