Write a program to swap two numbers without using third variable in c?
No Answer is Posted For this Question
Be the First to Post Answer
wat is output of the following int main() { const int j=2; int i; switch(i) { case 1:break; case j:break; default:break; } }
accept character from keyboard untill the user presses the enter key.If the user enters any character other than upper case(A-Z)alphabets program should stop taking any input
What is the explanation for cyclic nature of data types in c?
what is link list?
write a program to generate address labels using structures?
What is a macro?
Which is an example of a structural homology?
Write a C function to search a number in the given list of numbers. donot use printf and scanf
What are the types of unary operators?
Write a program for the following series: 1*3*5-2*4*6+3*5*7-4*6*8+.................up to nterms
How can I sort more data than will fit in memory?
what is the purpose of the code, and is there any problem with the code? int f( int n, int l, int r ) { return (n << l) >> r; }