Можешь еще больше извратиться
#include <conio.h>
#include <iostream>
int main()
{
int hello[]={0x48, 0x65, 0x6c, 0x6c, 0x6f, 0x20, 0x77, 0x6f, 0x72, 0x6c, 0x64, 0x21, 0xa, 0x0};
for (int *i=hello; *i!=0; i++) std::cout<<char(*i);
getch();
return 0;
}