#include "stdafx.h"
#include <iostream>
#include <iomanip>
using namespace System;
using namespace std;
int main(array<System::String ^> ^args)
{
wchar_t *str = L"Hola";
cout << str << endl; // he probado-erróneamente- cout <<(char) str << endl; ya que sale algo que no quiero.
wcout << str <<endl; // he visto esta opción, pero ....tampoco..
return 0;
}