2013年(14)
发布时间:2013-07-16 11:06:01
htons u_short PASCAL FAR htons( u_short hostshort); htons的功能:将一个无符号短整型数值转换为网络字节序,即大端模式(big-endian) 参数:u_short hostshort: 16位无符号整数 返回值:TCP / IP网络字节顺序. htonl &.........【阅读全文】
发布时间:2013-07-15 18:18:35
#include #include #include #include struct stu{ char name[10]; int age;};int main(){&.........【阅读全文】
发布时间:2013-07-15 18:13:41
1.函数功能 用来读写一个数据块。 2.一般调用形式 fread(buffer,size,count,fp); fwrite(buffer,size,count,fp); 3.说明 (1)buffer:是一个指针,对fread来说,它是读入数据的存放地址。对fwrite来说,是要输出数据的地址。 (2)size:要读写的字节数; (3.........【阅读全文】