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
what does " calloc" do?
Print the foll in C...eg when n=5 the o/p must b + + + + + + + + + + + + + + + + +
Why doesn't the code "int a = 1000, b = 1000; long int c = a * b;" work?
write a program to fined second smallest and largest element in a given series of elements (without sorting)
Explain continue keyword in c
What is huge pointer in c?
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?
What are the advantages of the functions?
Can I initialize unions?
write a c program for swapping two strings using pointer
wt is d full form of c
#include<stdio.h> main() {int i=1;j=1; for(;;) {if(i>5) break; else j+=1; printf("\n%d",j) i+=j; } }