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


Please Help Members By Posting Answers For Below Questions

What are pointer-to-members? Explain.

796


Write about the members that a derived class can add?

752


How do I run c++?

780


How do you sort a sort function in c++ to sort in descending order?

776


How would perform Pattern Matching in C++?

922


Who calls main function?

793


Can you please explain the difference between using macro and inline functions?

729


What are the data types in c++?

681


Can member data be public?

763


Why is c++ awesome?

792


What is the difference between an external iterator and an internal iterator? Describe an advantage of the external iterator.

785


How the delete operator differs from the delete[]operator?

843


What is function prototyping? What are its advantages?

802


What gives the current position of the put pointer?

746


What is static in c++?

784