C++小问题,望高手解答?
#include <iostream>
#include <stdlib.h>
using namespace std;
int main(int argc, char *argv[])
{
wchar_t wc;
wc = 'b';
wout<<wc;
wc = 'y';
wout<<wc;
wc = 'e';
wout<<wc;
system("PAUSE");
return 0;
}
这个程序偶在vc,dev c++,quincy 99上都试过,不能通过。那么宽字符类型到底在哪里用呢?

