Here's one way:
char szBuff[5] = {0};
_ultoa(1234, szBuff, 10);
char szTemp[32];
strcpy(szTemp, "The number is ");
strcat(szTemp, szBuff);
"Let us be thankful for the fools. But for them the rest of us could not succeed." - Mark Twain
"There is no death, only a change of worlds." - Native American Proverb