wat are the two methods for swapping two numbers without
using temp variable??
Answer Posted / abhishek karnani
int a=10,b=5;
a=a+b-(b=a);
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
write a program fibonacci series and palindrome program in c
What is the 'named constructor idiom'?
What is d scanf?
Explain that why C is procedural?
What is the role of && operator in a program code?
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
Explain how can I convert a number to a string?
How do you override a defined macro?
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...
What are the complete rules for header file searching?
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
Why is structure important for a child?
Which of these functions is safer to use : fgets(), gets()? Why?
What's the right way to use errno?
What is linear search?