How to display the value of a variable in the WIN API
int i = 5; TCHAR text[256]; _stprintf(text, TEXT("%d"), i); TextOut(hdc, 700, 50, text,100); It does not print anything, the line in the debug works, everything converts, but there is no output (