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
What is #include called?
I need previous papers of CSC.......plz help out by posting them.......
What do you mean by scope of a variable in c?
What are the differences between new and malloc in C?
Which is the best website to learn c programming?
What is the difference between typedef and #define?
Why does the call char scanf work?
what type of questions arrive in interview over c programming?
Compare array data type to pointer data type
Can we change the value of static variable in c?
How can I manipulate individual bits?
Can one function call another?
Can we assign string to char pointer?
What are predefined functions in c?
Describe how arrays can be passed to a user defined function