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.
重複の可能性: ローカル ホスト名と IP アドレスを取得する C++ Windows 関数呼び出し
いろいろ試しました。C ++でホスト名を取得する方法. Windows 7を使用しています。誰か助けてください。
私が使う
#include"unistd.h"
#include<stdio.h> #include<Winsock2.h> #pragma comment(lib, "Ws2_32.lib") int main() { char szPath[128] = ""; WSADATA wsaData; WSAStartup(MAKEWORD(2, 2), &wsaData); gethostname(szPath, sizeof(szPath)); printf("%s", szPath); WSACleanup(); return 0; }