toupper tag

1 questions


1 answers
136 views
0
Why is this code divided into several alphabetic ranges?

When I wrote in C, I only checked the value between 'A' and 'Z' when I checked the capital letters. inline int is_upper_alpha(char chValue){ return ((chValue >= 'A') && (chValue <= 'Z'))...

1 years ago

© 2024 OneMinuteCode. All rights reserved.