write a C code
to reverse a string using a recursive function, without
swapping or using an extra memory.
Answer Posted / sampath
void reverse(*str)
{
if(*str)
{
reverse(str+1);
putchar(*str);
}
}
| Is This Answer Correct ? | 58 Yes | 51 No |
Post New Answer View All Answers
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2
How can my program discover the complete pathname to the executable from which it was invoked?
Here is a good puzzle: how do you write a program which produces its own source code as output?
What is the benefit of using an enum rather than a #define constant?
What is function in c with example?
Explain how does free() know explain how much memory to release?
What are types of structure?
What is variable in c example?
What is the difference between array_name and &array_name?
The purpose of this exercise is to benchmark file writing and reading speed. This exercise is divided into two parts. a). Write a file character by character such that the total file size becomes approximately >10K. After writing close the file handler, open a new stream and read the file character by character. Record both times. Execute this exercise at least 4 times b). Create a buffer capable of storing 100 characters. Now after generating the characters, first store them in the buffer. Once the buffer is filled up, store all the elements in the file. Repeat the process until the total file size becomes approximately >10K.While reading read a while line, store it in buffer and once buffer gets filled up, display the whole buffer. Repeat the exercise at least 4 times with different size of buffer (50, 100, 150 …). Records the times. c). Do an analysis of the differences in times and submit it in class.
Write a code to generate divisors of an integer?
Does free set pointer to null?
Describe the steps to insert data into a singly linked list.
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
What are the advantages of using new operator as compared to the function malloc ()?