write a C code
to reverse a string using a recursive function, without
swapping or using an extra memory.

Answer Posted / billy

string reverse with out recursion


void rev( char *p )
{

char tmp;
int len =strlen(p)-1;
for( int i=0 ; i <= len/2 ; i++ )
{


tmp = p[i] ;
p[i] = p[len - i ] ;
p[len - i ] = tmp ;
}


printf("%s",p);


}

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is #include called?

775


I need previous papers of CSC.......plz help out by posting them.......

2050


What do you mean by scope of a variable in c?

740


What are the differences between new and malloc in C?

790


Which is the best website to learn c programming?

798






What is the difference between typedef and #define?

710


Why does the call char scanf work?

847


what type of questions arrive in interview over c programming?

1756


Compare array data type to pointer data type

796


Can we change the value of static variable in c?

739


How can I manipulate individual bits?

779


Can one function call another?

819


Can we assign string to char pointer?

786


What are predefined functions in c?

748


Describe how arrays can be passed to a user defined function

986