help with chinese charters

i have a question, when i want to write chinese charters in c++, mi program not run this, may someone helpme? my code is:

#include <iostream>
#include "wchar.h"
using namespace std;
int main(){
wcout<<L"你叫什"<<endl;
return 0 ;
}

but i don´t know where is the problem.
please help me :D
If I recal correctly, C++ code must only contain ASCII characters. If you want to output those kinds of characters, you'll have to insert them as their respective UTF codes inside the string.
Topic archived. No new replies allowed.