Dear Friends,
My requirement is as follows:
1)write a method with 2 parameter-choice and input character array
2)when choice is 0:
* reverse the input character array
* convert it into title case
* Display the output
3)choice 1:
* Only reverse
Please note that:
1)I should not use any string built in function
2)the input should not be a string but it should be char array, my whole operation is on character array only.
Example:
My Input is : 0,"Sriram Ravi"
My output is : Ivar Marirs
Pleas help.
Regards