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
write a program to rearrange the array such way that all even elements should come first and next come odd
Consider the following C program. #include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain
Explain what is the concatenation operator?
What is uint8 in c?
#define swap1(a,b) a=a+b;b=a-b;a=a-b; main() { int x=5,y=10; swap1(x,y); printf("%d %d\n",x,y); swap2(x,y); printf("%d %d\n",x,y); } int swap2(int a,int b) { int temp; temp=a; b=a; a=temp; return; } what are the outputs?
wat are the two methods for swapping two numbers without using temp variable??
Write a C function to search a number in the given list of numbers. donot use printf and scanf
hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm
Which is better oop or procedural?
What is the difference between null pointer and void pointer
10 Answers CTS, Manforce, MAQ Software,
What is a list in c?
WHAT IS C?