- 博客(2)
- 收藏
- 关注
原创 C语言笔试题,手写strcpy
#include <stdio.h> char* strcpy(char *a,const char *b) { //用指针偏移 if(a==NULL||b==NULL) return NULL; while((*a++=*b++)!='\0'); return a; } int main() { char p[5]="abcd"; const char *q="ABCD"; strcpy(p,q); printf(...
2021-09-20 19:19:06 193
原创 Qt通信工具,2021年9月20日总结
Qt完成了第一个项目。 实现局域网下的简单通信。 功能:实现登录,注册,获得IP,实现UDP通信,服务端转发文件(暂未实现) 服务端代码 mainwindow.h #ifndef MAINWINDOW_H #define MAINWINDOW_H #include <QMainWindow> #include <QTcpServer> namespace Ui { class MainWindow; } class MainWindow : public QMa.
2021-09-20 18:46:09 273
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人