How to reverse a string using a recursive function, without
swapping or using an extra memory?
Answer Posted / sasi
#include<stdio.h>
#include<conio.h>
void main()
{
printf("\n i dont know");
}
getch();
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What do you mean by Recursion Function?
Compare and contrast compilers from interpreters.
How can I open files mentioned on the command line, and parse option flags?
What is the right way to use errno?
can we implement multi-threads in c.
What is header file definition?
How are 16- and 32-bit numbers stored?
What is masking?
Are local variables initialized to zero by default in c?
What is the size of array float a(10)?
Are pointers really faster than arrays?
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
how to print the character with maximum occurence and print that number of occurence too in a string given ?
Why do we use null pointer?
Is linux written in c?