-
两台电脑简单通信
很简单的源码,通过C++实现两台电脑的简单通信,希望对大家有帮助,#include
#include
#pragma comment(lib,"ws2_32.lib")
void main()
{
WORD wVersionRequested;
WSADATA wsaData;
int err;
wVersionRequested = MAKEWORD( 1, 1 );//请求1.1版本的winsock库
err = WSAStartup( wVersionRequested, &wsaData );
if ( err != 0 ) {
return;
}
if ( LOBYTE( wsaData.wVersion ) != 1 ||
HIBYTE( wsaData.wVersion ) != 1 ) {
WSACleanup( );
return;
}
&n
- 2022-03-20 09:13:36下载
- 积分:1
-
MODBUS规约具体内容请参照规约文本。
MODBUS规约具体内容请参照规约文本。-MODBUS Statute of the specific content of the text please refer to the Statute.
- 2023-04-16 18:25:02下载
- 积分:1
-
摩沙的串口底层驱动,可用于串口编程,c语言
摩沙的串口底层驱动,可用于串口编程,c语言-rid of the bottom-driven serial port can be used for serial programming language c
- 2022-01-26 07:24:01下载
- 积分:1
-
receivers use C8051F330 prepared to receive the decoding process.
接收机,利用C8051F330编写的接收解码程序-receivers use C8051F330 prepared to receive the decoding process.
- 2023-05-24 21:05:03下载
- 积分:1
-
dvb_t标准在Matlab的Simulink仿真
DVB_T标准的matlab下的simulink仿真-DVB_T standards under the Matlab Simulink simulation
- 2022-12-17 00:40:03下载
- 积分:1
-
这是一个在DSP上实现的RS纠错编解码算法,很实用,希望对各位大侠有帮助...
这是一个在DSP上实现的RS纠错编解码算法,很实用,希望对各位大侠有帮助-This is a realization of the DSP RS error correction coding, very practical, and I hope to help you Shanhaiguan
- 2022-05-07 14:49:02下载
- 积分:1
-
ASK modulation communication system procedures, more practical, including the co...
通信系统的ASK调制程序,比较实用,包括完整的工程-ASK modulation communication system procedures, more practical, including the complete works
- 2022-03-19 11:07:31下载
- 积分:1
-
example MSComm
MSComm串口通信示例-example MSComm
- 2022-05-17 07:04:57下载
- 积分:1
-
用Cholesky分解求ARMA模型的参数并作谱估计,这个程序是用C来实现的...
用Cholesky分解求ARMA模型的参数并作谱估计,这个程序是用C来实现的-Using Cholesky decomposition for ARMA model parameters and for spectral estimation, this procedure is achieved using C
- 2022-07-17 16:41:14下载
- 积分:1
-
实现矩阵的Cholesky分解,这些程序是用C来编写的.
实现矩阵的Cholesky分解,这些程序是用C来编写的.-Cholesky decomposition of matrix realize that these procedures are to come prepared with C.
- 2022-01-28 20:05:23下载
- 积分:1