Answer Posted / sasikumar
main()
{
int a,b,c;
printf("enter two no's :");
scanf("%d%d",&a,&b);
c=a^=b^=a^=b;
printf("%d",c);
}
| Is This Answer Correct ? | 6 Yes | 6 No |
Post New Answer View All Answers
What are register variables in c?
There seem to be a few missing operators ..
How do I swap bytes?
What would be an example of a structure analogous to structure c?
What does d mean?
What is the use of bitwise operator?
What do the functions atoi(), itoa() and gcvt() do?
Is there any possibility to create customized header file with c programming language?
What is fflush() function?
Explain the use of 'auto' keyword in c programming?
What is use of bit field?
Write a program to use switch statement.
p*=(++q)++*--p when p=q=1 while(q<=6)
What is static function in c?
An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array