Hello,
I want to make a message box which would show me how many points have I earned.
So I have:
unsigned int points;
//code
points++;
MessageBox(hwnd, "You have bla bla", "Total points /*HERE I WANT TO DISPLAY CONTENTS OF points VARIABLE*/, MB_OK);
Is possible to do that?