我面临着在代码块中显示孟加拉语输出的问题。我想写孟加拉语。我知道它可以在unicode的帮助下完成。 “ঈ”的unicode是2440。所以我写了下面的小程序。
#include<stdio.h>
int main()
{
int i;
char ch = 2440;
printf("%c",ch);
return 0;
}
但上述节目并未显示“ঈ”。为什么?我应该怎么做才能在代码块中显示孟加拉语.Plz guyz帮助我解决这个问题。