我是C++的初学者
我想使用Borland C在C++中打印阿拉伯语,但是我失败了,我也尝试将文件保存为UTF-8,但它没有帮助.
所以,如果任何人知道任何关于这个或关于什么是问题或如何配置编译器打印阿拉伯语,请帮助我.
#include<iostram.h>
#include<conio.h>
void main()
{
clrscr();
char x [5] = {'?','?','?','?'};
for(int i = 0; i< 5; i++)
cout << x[i];
getche();
}
Run Code Online (Sandbox Code Playgroud) c++ ×1