- Jan 15, 2000
- 7,052
- 0
- 0
Is there any simple way to cycle through all characters A-Z, a-z, 0-9 without doing each set separately?
Currently my code looks like this:
char c
for (c = 'A'; c <= 'Z'; c++)
but I'd like to have c loop through the sets a-z and 0-9 as well. Thanks.
Currently my code looks like this:
char c
for (c = 'A'; c <= 'Z'; c++)
but I'd like to have c loop through the sets a-z and 0-9 as well. Thanks.