reverse « char « C Array Q&A

Home
C Array Q&A
1.bit
2.Byte
3.char
4.class
5.Development
6.Dimensional Array
7.dynamic
8.element
9.find
10.index
11.initialization
12.Integer
13.length
14.loop
15.memory
16.Operation
17.pointer
18.Print
19.size
20.Sort Search
21.string
22.struct
23.variable
C Array Q&A » char » reverse 

1. Error while trying to reverse a char array    stackoverflow.com

I'm trying to get better at C++ (I know a little). I'm working on character arrays. I found an exercise where the objective is to reverse a character array (after I ...

2. Reverse a char array    cboard.cprogramming.com

If the char array is of a known length then you don't need recursion for it as it can be solved with a trivial loop over half the items performing swaps as you go. That would make the hint stupid, as you don't need (or bennefit from) recursion. If however the length is unknown then I'm going to suggest that this ...

3. reversing the content of array character-wise    cboard.cprogramming.com

I am a newbie and havent read pointers yet. This programme breaks in the function when it is supposed to reverse the characters.e-g "four" --> "ruof" Herre is what i did. I created another array of same size to copy the contents of first array and was thinking of for loop going from the length of character to the zero subscript ...

java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.