-1

I have to write a C++ program to specify a character from input if it is a number or word or symbol? Firstly I used ASCII to solve that, but the problem is when the input is not a character in ASCII, example it is in UTF-16, it is a Korean word... So what can I do to solve? Thank you!

1 Answers1

0

wchar_t should be the one you are looking for. In C++, wchar_t is a distinct fundamental type (and thus it is not defined in nor any other header).

handlerFive
  • 870
  • 10
  • 23