Oxygen Basic
Programming => Problems & Solutions => Topic started by: on October 09, 2018, 04:08:07 PM
-
This code prints the entire string:
wchar w[11] = "1234567890"
print w[1]
How to print each individual character?
-
It feels like you're sanitizing O2 syntax. ;D
-
You can overlay any string with a byte or word array. It is much more efficient than using asc or mid to get individual characters
byte b at strptr w
print b[1]