write a program to swap Two numbers without using temp variable.
Answer Posted / prashant
b=a+b;
a=b-a;
b=b-a;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Can we increase size of array in c?
What does calloc stand for?
I have a varargs function which accepts a float parameter?
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.
Explain how does flowchart help in writing a program?
What is 2 d array in c?
What is function definition in c?
can we have joblib in a proc ?
Can the “if” function be used in comparing strings?
What is meant by keywords in c?
how many key words availabel in c a) 28 b) 31 c) 32
write a program to generate address labels using structures?
Write a program to print factorial of given number using recursion?
PROGRAM TO WRITE CONTENTS OF 1 FILE IN REVERSE TO ANOTHER FILE,PROGRAM TO COPY 1 FILE TO ANOTHER BY SPECIFYING FILE NAMES AS COMMAND LINE
What are enums in c?