"He is not a believer, who eats his fill while his neighbour beside him is hungry and he knows about it."
Monday, July 23, 2007
Function to Reverse the String without any loop
//// Function to Reverse the String without any loop String Reverse(String strParam) { if (strParam.Length == 1) return strParam; else return Reverse(strParam.Substring(1)) + strParam.Substring(0, 1) ; }
No comments:
Post a Comment
Please post your comments here.....