My mission is to print Unicode characters using this program.I have been on this for several months.
I follow the following procedure to enable unicode;
1.File > New> Project>win 32 console application> simple application.
2.File > New > c++ source file
3.Project > setting>(General tab)Not using mfc > (c/c++ tab)preprocessor > _UNICODE Precompiled header >Not using precompiled header
#include<fstream.h>
#include<stddef.h>
#include<wchar_t.h>
#include<tchar.h>
int main(argv* .......)
{
wchar_t c;
for(c = 1; c < 65536; c++)
{ cout << (TCHAR)c;}
return 0;
}
I need your suggestion.