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
Is stack a keyword in c?
Explain how do you print only part of a string?
Write a program to swap two numbers without using a temporary variable?
Write a code of a general series where the next element is the sum of last k terms.
Write a program to swap two numbers without using the third variable?
What is double pointer?
The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
What is unsigned int in c?
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
What is the difference between array and pointer in c?
simple program of graphics and their output display
What is difference between stdio h and conio h?
In a header file whether functions are declared or defined?
What is the meaning of && in c?