I am getting error that I am doing an invalid conversion from int to char. I am using sprintf to change a user entered hour called ETHour to char, then strcat more chars onto it to create a time then trying to post it to a window..
char cETime[8], Min[8], AMPM[8];
int ETHour;
sprintf(cETime, "%i", ETHour);
strcat(cETime, ":");
strcat(cETime, Min);
strcat(cETime, " ");
strcat(cETime, AMPM);
SetWindowText(IDC_EASTERN_TIME, cETime);