std::getwchar
From cppreference.com
Defined in header <cwchar> | ||
std::wint_t getwchar(); | ||
Reads the next wide character from stdin.
[edit]Parameters
(none)
[edit]Return value
The obtained wide character, or WEOF if an error has occurred or the end of file reached
[edit]See also
reads a character from stdin (function) | |
gets a wide character from a file stream (function) | |
C documentation for getwchar |