I had been displaying String uptill now using messageBox(). How can I display an integer using this function? I tried something like this but it didn't work:
int message=1;
MessageBox(NULL,
(LPCSTR)message,
"Display",
MB_ICONINFORMATION);