Write a program to swap two numbers without using a temporary variable?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

what does " calloc" do?

7 Answers   Cadence, Logos,


Print the foll in C...eg when n=5 the o/p must b + + + + + + + + + + + + + + + + +

1 Answers  


Why doesn't the code "int a = 1000, b = 1000; long int c = a * b;" work?

7 Answers  


write a program to fined second smallest and largest element in a given series of elements (without sorting)

9 Answers   Yahoo,


Explain continue keyword in c

0 Answers  






What is huge pointer in c?

0 Answers  


6)swap(int x,y) { int temp; temp=x; x=y; y=temp; } main() { int x=2;y=3; swap(x,y); } after calling swap ,what are yhe values x&y?

3 Answers  


What are the advantages of the functions?

0 Answers  


Can I initialize unions?

0 Answers  


write a c program for swapping two strings using pointer

0 Answers  


wt is d full form of c

6 Answers   TCS, Wipro,


#include<stdio.h> main() {int i=1;j=1; for(;;) {if(i>5) break; else j+=1; printf("\n%d",j) i+=j; } }

7 Answers   HCL,


Categories