write a C code
to reverse a string using a recursive function, without
swapping or using an extra memory.
Answer Posted / asdf
void reverse(*str)
{
if(*str){
reverse(++str);
str--;
printf("%c",*str);
}
}
| Is This Answer Correct ? | 16 Yes | 9 No |
Post New Answer View All Answers
difference between Low, Middle, High Level languages in c ?
1234554321 1234 4321 123 321 12 21 1 1 12 21 123 321 1234 4321 1234554321
Explain the use of fflush() function?
Sir i need notes for structure,functions,pointers in c language can you help me please
can anyone suggest some site name..where i can get some good data structure puzzles???
What is header file in c?
Apart from dennis ritchie who the other person who contributed in design of c language.
When the macros gets expanded?
What is meant by keywords in c?
What does double pointer mean in c?
What is use of integral promotions in c?
What is the use of extern in c?
What is the purpose of 'register' keyword in c language?
What is the difference between break and continue?
Do you know null pointer?