prasad


{ City } hyderabad
< Country > india
* Profession * ste
User No # 73114
Total Questions Posted # 0
Total Answers Posted # 1

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 2
Users Marked my Answers as Wrong # 2
Questions / { prasad }
Questions Answers Category Views Company eMail




Answers / { prasad }

Question { ADP, 33028 }

write the code to reverse a string without using Strrev
built in function.


Answer

Dim Str, Cnt , Rstr , i

Str = "Shiva"
Cnt = len(str)

For i = 1 to Cnt
Rstr = mid(str , i ,1) &Rstr
Next
Msgbox Rstr

Is This Answer Correct ?    2 Yes 2 No