Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
DWORD型変数の文字列を作成しようとしています。どうすればそれらを連結できますか?
DWORD
char* string; DWORD a,b,c; //abc will get some values here strcat(string,a); strcat(string,b); strcat(string,c);