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
Why is #define used?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
Explain how can I remove the trailing spaces from a string?
What are the different types of data structures in c?
How many bytes is a struct in c?
What is far pointer in c?
Why use int main instead of void main?
explain what is an endless loop?
Explain indirection?
What is the correct code to have following output in c using nested for loop?
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?
write a program to find out prime number using sieve case?
How can you increase the allowable number of simultaneously open files?
Explain what are the different data types in c?