// Convert Int to Char
#include "stdafx.h"
#include <iostream>
using namespace System;
using namespace std;
int main(array<System::String ^> ^args)
{
for (short i = 0; i < 8; i++ )
{
char newChar = i;
cout << i << " = " << newChar << "\n";
}
cin.get();
return 0;
}
最後の出力、番号 7 には文字が表示されず、空白のみが表示されます。