Hi!
I have this simple test program in Visual C++ (VS2005)
#include "stdafx.h"
#include <iostream>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
for(int i = 0; i < argc; i++)
{
wcout << "|" << argv[i] << "|" << endl;
}
wcout << L"TEST: ¬aa~";
return 0;
}
Character Set in project properties is set to: "Use Unicode Character Set".
When I start the program: "uni a b c", I get:
|uni|
|a|
|b|
|c|
TEST:
if I try "uni aa ~~", I get just:
|uni|
|
So even this basic example is not working.. what am I doing wrong? thank you very much
Start Free Trial