Quote Originally Posted by sougata View Post
Hi,

"A,B,C..." all have an ASCII value. For example "A"=65 so an iteration like this can help

Code:
For I = 0 to 25
char[I] = I + 65
Next I
P.S. PBP Manual has the ascii chart
As I look at this a year later, I now understand what this snippet does.
"I realise there are likely easier ways to load the ARRAY . . .Baby Steps"
It loads the variable CHAR with the Alphabet,<font color = BLUE> A Belated Thanks, Sougata .</font color>
This response is to point that fact out to anyone new to arrays. Attention Newbies