資源簡介
MFC中基于TCP的客戶端與服務端的通信
// client.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include<Winsock2.h>
#include<stdio.h>
#define PORT 5000
#define BUFFER 1024
void main(int argc,char *argv[])
{
WSADATA wsaData;
SOCKET client;
int po
代碼片段和文件信息
- 上一篇:信息奧賽一本通解題題庫.pdf
- 下一篇:poco C++中文學習資料
評論
共有 條評論