Difference between revisions of "cpp/io/c/getwchar"
From cppreference.com
m (Shorten template names. Use {{lc}} where appropriate.) |
m (Update links.) |
||
Line 14: | Line 14: | ||
===See also=== | ===See also=== | ||
{{dsc begin}} | {{dsc begin}} | ||
− | {{dsc inc | cpp/io/c/ | + | {{dsc inc | cpp/io/c/dsc getchar}} |
− | {{dsc inc | cpp/io/c/ | + | {{dsc inc | cpp/io/c/dsc fgetwc}} |
{{dsc see c | c/io/getwchar}} | {{dsc see c | c/io/getwchar}} | ||
{{dsc end}} | {{dsc end}} |
Revision as of 22:01, 31 May 2013
Defined in header <cwchar>
|
||
wint_t getchar(); |
||
Reads the next wide character from stdin.
Parameters
(none)
Return value
The obtained wide character or WEOF if an error has occurred or the end of file reached
See also
reads a character from stdin (function) | |
gets a wide character from a file stream (function) | |
C documentation for getwchar
|