I have a simple prob that I dont seem to be able to solve. The itemName is suppose to be Item#....where # is to be the itemNum generated in the program.


char itemName[MAX];
int itemNum;
...
...
strcpy(name, "Item");


I have tried itemName[4]=itemNum but I get an ascii character where the number is suppose to be. Any suggestions?

Thanx