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 the data types present in c?
What is the best organizational structure?
while initialization of array why we use a[][2] why not a[2][]...?
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
What is the difference between void main and main in c?
number of times a digit is present in a number
What does 4d mean in c?
What is the value of h?
what do the 'c' and 'v' in argc and argv stand for?
An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?
Why cant I open a file by its explicit path?
What is the use of define in c?
Can an array be an Ivalue?
what is use of malloc and calloc?
write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.