How to convert a DWORD into a DB
问题 I want to display a score in a game that I built in MASM32, and I have a problem, how do I convert a DWORD to a DB (string). There is the function crt__itoa to convert a dword to an integer , but for some reason it doesn't work (do i need to include an other lib ? ). There is the function TextOutA to display a score, but again I cant print it out because I don't have a string so it can print it from. 回答1: do i need to include an other lib? - Probably. You need msvcrt.inc and msvcrt.lib for