摘要:
//TODO: TCP、UDP在OSI(Open System Interconnect)网络模型中处于传输层协议 IP在OSI网络模型属于网络层 常用网络函数: socket函数 创建套接字、确定套接字的参数 int socket(int domain, int type, int protoco 阅读全文
摘要:
//TODO: c语言中被const修饰的变量为常变量 1】修饰变量 const int num =0;变量的值不可以改变 #include <stdio.h> int main (){ const int num=0; printf("num:%d\n",num); return 0; } 2】通 阅读全文