摘要: SYN here is connect from client . While bind() is used for defining the communication end point. 阅读全文
posted @ 2020-04-14 17:40 anyu686 阅读(73) 评论(0) 推荐(0) 编辑
摘要: struct Distance{ int feet; float inch; }; int main() { structure Distance d1, d2; } is equivalent to typedef struct Distance{ int feet; float inch; } 阅读全文
posted @ 2020-04-14 04:46 anyu686 阅读(141) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> // A normal function with an int parameter // and void return type void fun(int a) { printf("Value of a is %d\n", a); } int main() 阅读全文
posted @ 2020-04-14 04:22 anyu686 阅读(140) 评论(0) 推荐(0) 编辑