write a program to swap Two numbers without using temp variable.
Answer Posted / chandan
a=a+b;
b=a-b;
a=a-b;
| Is This Answer Correct ? | 1400 Yes | 158 No |
Post New Answer View All Answers
What is maximum size of array in c?
Write the control statements in C language
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
Describe how arrays can be passed to a user defined function
code for replace tabs with equivalent number of blanks
What is f'n in math?
Tell me the use of bit field in c language?
What is the equivalent code of the following statement in WHILE LOOP format?
What is a function simple definition?
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
In a header file whether functions are declared or defined?
Is there any possibility to create customized header file with c programming language?
What is a lvalue
how to capitalise first letter of each word in a given string?
Explain why can’t constant values be used to define an array’s initial size?