在使用outtextxy时,无法输出wchat_t类型的字符串
报错为: [Error] invalid conversion from 'wchar_t*' to 'TCHAR' {aka 'char'} [-fpermissive]
#include<graphics.h>
#include<conio.h>
using namespace std;
int main(){
//freopen(".in","r",stdin);
//freopen(".out","w",stdout);
initgraph(1280,720,EX_SHOWCONSOLE);
wchar_t s[] = L"你好世界";
outtextxy(10, 20,s);
_getch();
//fclose(stdin);
//fclose(stdout);
return 0;
}