answersLogoWhite

0


Best Answer

char * RevString( char * str )

{

char * dup = strdup( str );

size_t len = strlen( str );

int x = 0;

int y = len;

while( x

str[ x++ ] = dup[ --y ];

free( dup );

return( str );

}

Note that you don't actually need this function since the standard built-in strrev() function reverses strings more efficiently than this.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you program reverse letters using arrays in C plus plus?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Write a program to read your name and reverse it using arrays?

abdulrahman


How can you do the same thing as the program below but using strings and arrays in C language?

Program below?!


Are arrays in C created on the stack or the heap?

That depends on where you define them. Arrays defined inside functions are declared on the stack (like other variables defined in functions). Arrays defined outside of any function, or using the static keyword inside a function are allocated in the static data area of the program. Other arrays may be allocated using malloc() (or "new" in C++); these are allocated on the heap.


TV program name using these letters santad?

Dasant


How do you print my name in c program in vertical manner using arrays?

you need strings to print any character(your name) this is not possible useing array:D


Write a program using iostreams to take as input two multi-dimensional arrays and print their sum as output Matrix Addition in Matrix format?

http://www.assignmentsclub.com/


What multiplication fact be found be using the arrays 2x9 and 5x9?

7x9 is the multiplication fact that can be found using the arrays 2x9 and 5x9.


What is the way by which you can make the user defined the size of the arrays?

By using the library function #define A[] we can define the size of arrays


What is the purpose of using arrays in C language?

The purpose of using arrays in C is to store multiple values in one variable. Then you can make programs that use arrays like lists, printing values from multiple arrays into one line. It take memory in continues block then we can know memory location easily. We can retrieve data quickly.


What is memory leakage in terms of arrays?

leakage in arrays occur when you declare an array with big size and using only very few bytes.


A program for queue ADT by using arrays in c plus plus?

Arrays are not suitable for implementing queues because while they are ideal for adding to the end, the are not ideal for extraction from the beginning. For that you need a deque. Regardless, the STL (standard template library) already provides an efficient queue ADT in std::queue.


What mult fact can be found by using the arrays 2X9 and 5X9?

9