Answer Posted / vijay
#include<stdio.h>
main()
{
int a=5,b=9;
printf("%d %d \n",a,b);
a^=b^=a^=b;
printf("%d %d \n",a,b);
}
| Is This Answer Correct ? | 4 Yes | 4 No |
Post New Answer View All Answers
What are the data types present in c?
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
How can you restore a redirected standard stream?
What are the advantages of c preprocessor?
What do you mean by Recursion Function?
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
Explain built-in function?
Which type of language is c?
What is the meaning of 2d in c?
What is scope of variable in c?
What is register variable in c language?
What is calloc malloc realloc in c?
Explain the ternary tree?
What is preprocessor with example?
in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above