swap two integer variables without using a third temporary
variable?
Answer Posted / abhinav lohar
t=a;
a=b;
b=t;
| Is This Answer Correct ? | 0 Yes | 8 No |
Post New Answer View All Answers
write a program that types this pattern: 12345678987654321 12345678 87654321 1234567 7654321 123456 654321 12345 54321 1234 4321 123 321 12 21 1 1
Why we write conio h in c?
What does struct node * mean?
When is a void pointer used?
what is the diffrenet bettwen HTTP and internet protocol
a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.
Explain the difference between strcpy() and memcpy() function?
What is the difference between declaring a variable by constant keyword and #define ing that variable?
Explain Basic concepts of C language?
Explain how do you print an address?
Why header file is used in c?
What does node * mean?
What are the advantages of c preprocessor?
Differentiate between #include<...> and #include '...'
Explain what is the benefit of using #define to declare a constant?