My codes are as simple as these:
#include <iostream>
using namespace std;
//Some codes here...
bool somefunction(){
cout<<"单元格";
return false;
}
and this is what I got:
error C2143: syntax error: missing ';' before 'return'; error C2001: newline is constant;
Moreover, if i change "单元格"
into an English version like "cell", it works perfectly;
std::wcout
instead – Enedina