A fool sees not the same tree that a wise man sees。。。
发布时间:2016-06-13 19:39:14
所谓“位域”是把一个字节中的二进位划分为几个不同的区域, 并说明每个区域的位数。每个域有一个域名,允许在程序中按域名进行操作。 这样就可以把几个不同的对象用一个字节的二进制位域来表示。位域的定义和位域变量的说明位域定义与结构定义相仿,其形式为:struct 位域结构名 { 位域列表 };eg.........【阅读全文】
发布时间:2016-06-13 19:39:09
数名: stpcpy 功 能: 拷贝一个字符串到另一个 用 法: char*stpcpy(char *destin, char *source); 程序例: #include <stdio.h> #include <string.h> int main(void) { char string[10]; char *str1 = "abcdefghi"; stpcpy(string, str1); .........【阅读全文】