Answer the question
In order to leave comments, you need to log in
Explain what is 0x5A in this code?
for (int i=0; i= 0x30 && username[i] <= 0x39) ||
(username[i] >= 0x41 && username[i] <= 0x5A) ||
(username[i] >= 0x61 && username[i] <= 0x7A)
Roughly guessing that 0x30, 0x39 is all related to the length of the text, but still, explain what it means..
Thank you!
Answer the question
In order to leave comments, you need to log in
It's just that someone didn't know about the isalnum function and wrote their own.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question