1. Socket网络编程

1. 借助服务器实现小写转大写的程序:   客户端:发送任意小写字母到服务器端。   服务器端:接收小写字母,转为大写,回传给客户端,然后客户端显示到屏幕。    #include <stdio.h> #include <unistd.h> #include <sys/socket.h> #include <stdlib.h> #include <arpa/inet.h> //结构体stru
相关文章
相关标签/搜索