Hi guys,
I need some help with sprintf. I get the general idea, and I think everything works, but my MessageBox will not diplay the right text.
int a = 25;
char buf [80];
sprintf(buf, "%d", a );
MessageBox(NULL, (LPCWSTR)buf, L"Sel Change", MB_OK);