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.
次のコードが呼び出し元プログラムのパス名を出力しないのはなぜですか?
#include<iostream> int main() { TCHAR buffer[MAX_PATH]; GetModuleFileName(NULL,buffer,sizeof(buffer)); cout << "Filepath:" << buffer << "\n"; }
みんなの助けに感謝します、問題はcoutにありました、私はwprintfを使いました、そしてそれは働きました。
(アプリケーションが停止したために)バッファーの内容が表示されないのに、バッファーに実際に期待するデータが含まれている可能性がありますか?