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 is the difference between printf and scanf in c?
Is file a keyword in c?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
What is the general form of #line preprocessor?
What is quick sort in c?
When is a null pointer used?
Why do we use stdio h and conio h?
Whats s or c mean?
What is the difference between int main and void main in c?
What's the right way to use errno?
Why we use int main and void main?
Can we replace the struct function in tree syntax with a union?
Explain how can a program be made to print the line number where an error occurs?
Write a code to determine the total number of stops an elevator would take to serve N number of people.
What are the different types of data structures in c?