摘要:
上代码: 1 #include "stdafx.h" 2 #include 3 #include 4 5 #pragma comment(lib, "ws2_32.lib") 6 #pragma comment(lib, "urlmon.lib") 7 8 #define MAX_SIZE 1024 9 10 11 int GetLocalIP(); 12 int GetInternetIP(); 13 14 int main(int argc, char* argv[]) 15 { 16 GetLocalIP(); 17 GetIn 阅读全文