码迷,mamicode.com
首页 >  
搜索关键字:结构体-类    ( 629个结果
浅谈getaddrinfo函数的超时处理机制
在sockproxy上发现,getaddrinfo 解析域名相比ping对域名的解析,慢很多。我觉得ping用了gethostbyname解析域名。问题变为getaddrinfo解析域名,是否比 gethostbyname慢。写测试程序,分别用getaddrinfo和gethostbyname解析, ...
分类:其他好文   时间:2020-01-20 20:39:44    阅读次数:82
小小小小问题单
(1)结构体类型不能为空. ...
分类:其他好文   时间:2020-01-17 00:03:51    阅读次数:76
结构体的四种定义方法
1.先定义结构体类型,再定义结构体变量 struct student{ int data; }; struct student stu1;//stu1为student的结构体变量 2.定义结构体变量的同时,定义结构体变量 struct student{ int data; }stu1; 如果想要继续 ...
分类:其他好文   时间:2020-01-16 00:37:03    阅读次数:170
实验7
#include <stdio.h> #include <stdlib.h> #include <string.h> const int N = 10; // 定义结构体类型struct student,并定义其别名为STU typedef struct student { long int id; ...
分类:其他好文   时间:2020-01-01 16:53:29    阅读次数:66
实验七
改了之后是可以正常运行的 #include <stdio.h> #include <stdlib.h> #include <string.h> const int N = 10; // 定义结构体类型struct student,并定义其别名为STU typedef struct student { ...
分类:其他好文   时间:2020-01-01 12:06:41    阅读次数:77
实验七
#include <stdio.h> #include <stdlib.h> #include <string.h> const int N = 10; // 定义结构体类型struct student,并定义其别名为STU typedef struct student { long int id; ...
分类:其他好文   时间:2020-01-01 11:45:20    阅读次数:57
实验7
#include <stdio.h> #include <stdlib.h> #include <string.h> const int N = 10; // 定义结构体类型struct student,并定义其别名为STU typedef struct student { long int id; ...
分类:其他好文   时间:2020-01-01 11:44:08    阅读次数:63
实验七
#include <stdio.h> #include <stdlib.h> #include <string.h> const int N = 10; // 定义结构体类型struct student,并定义其别名为STU typedef struct student { long int id; ...
分类:其他好文   时间:2020-01-01 10:09:28    阅读次数:62
实验七
// 将file1.txt中小写字母转换成大写后,另存为file2.txt #include <stdio.h> #include <stdlib.h> int main() { FILE *fin, *fout; // 定义文件类型指针 int ch; fin = fopen("file1.txt ...
分类:其他好文   时间:2020-01-01 10:06:46    阅读次数:77
实验七
part1 // 将file1.txt中小写字母转换成大写后,另存为file2.txt #include <stdio.h> #include <stdlib.h> int main() { FILE *fin, *fout; // 定义文件类型指针 int ch; fin = fopen("fil ...
分类:其他好文   时间:2020-01-01 10:03:05    阅读次数:90
629条   上一页 1 ... 3 4 5 6 7 ... 63 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!