The code was like this:
for (int i =0;i<[word length];i++)
I'd like to change it to:
for (int i =[word length] ; i>0 ;i--)
but it doesn't work.
So can you help me,please
The code was like this:
for (int i =0;i<[word length];i++)
I'd like to change it to:
for (int i =[word length] ; i>0 ;i--)
but it doesn't work.
So can you help me,please
And also put the length in a variable before the loop.