Does anyone know which include file is needed for functions; IsLetter (ch) and ToLower(ch) ?
Dick
ctype.h ? I dunno.
Yes it belongs to the cctype header in C++ and ctype.h in C.
>oes anyone know which include file is needed for functions; IsLetter (ch) and ToLower(ch) ?
There are no such functions in standard C++. The cctype header has isalpha and tolower, which is probably what you're referring to.
Thank you all very much for the help it's appreciated.
Dick
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.