write a program to swap Two numbers without using temp variable.
Answer Posted / insane programmer
#include<stdio.h>
#include<conio.h>
void main()
{
int a=100, b=30;
clrscr();
a = a+b;
b = a-b;
a = a-b;
printf("Swapping without using third variable (using + and -).\n\n");
printf("Value of a=%d and b=%d.", a,b);
getch();
}
you can get more example here http://rajkishor09.hubpages.com/_eknow/hub/How-to-swap-two-numbers-without-using-third-temp-variable
Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
can any one tel me wt is the question pattern for NIC exam
code for replace tabs with equivalent number of blanks
What is data structure in c language?
How can I read and write comma-delimited text?
using only #include
What does c in a circle mean?
What is nested structure with example?
Why & is used in c?
How can I implement a delay, or time a users response, with sub-second resolution?
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
How reliable are floating-point comparisons?
What are types of functions?
List some of the dynamic data structures in C?
What are 'near' and 'far' pointers?