how to swap two strings without using any third variable ?
Answer Posted / rohit kapade
bool SwapString(char **s1,char **s2)
{
//char *temp = NULL;
//temp = *s1;
//*s1 = *s2;
//*s2 = temp;
*s1 = (char*)((int)*s1 + (int)*s2);
*s2 = (char*)((int)*s1 - (int)*s2);
*s1 = (char*)((int)*s1 - (int)*s2);
return true;
}
Is This Answer Correct ? | 3 Yes | 3 No |
Post New Answer View All Answers
What are pointer-to-members? Explain.
Write about the members that a derived class can add?
How do I run c++?
How do you sort a sort function in c++ to sort in descending order?
How would perform Pattern Matching in C++?
Who calls main function?
Can you please explain the difference between using macro and inline functions?
What are the data types in c++?
Can member data be public?
Why is c++ awesome?
What is the difference between an external iterator and an internal iterator? Describe an advantage of the external iterator.
How the delete operator differs from the delete[]operator?
What is function prototyping? What are its advantages?
What gives the current position of the put pointer?
What is static in c++?