Hi all!
Whenever I am working with my code in my main.cpp file, I can call character-handling functions like
- isdigit
- isalpha
- isspace
- toupper
without importing the cctype
library. However, my C++ How to Program Book shows that the cctype library must be imported before the functions can be used.
Why and how am I able to access these (working) functions without importing the cctype library in my main.cpp file?