Questions tagged [wchar]

wchar.h is a header file in the C standard library. It is a part of the extension to the C programming language standard done in 1995. It contains extended multibyte and wide character utilities. The standard header is included to perform input and output operations on wide streams. It can also be used to manipulate the wide strings.

196 questions
-5
votes
1 answer

C++ wchar_t* not working

wchar_t* Pfad; wcin >> Pfad; wchar_t* file = Pfad + "*.quiz"; Not working for me, how can I make this work? It says "*.quiz" is wrong, something like it has to be a numeric value or something like that. Well sorry, I am new to c++... and…
user3566608
  • 353
  • 3
  • 15
1 2 3
13
14