发布时间:2015-03-14 16:00:44
功 能: 将s所指向的某一块内存中的每个字节的内容全部设置为ch指定的ASCII值, 块的大小由第三个参数指定,这个函数通常为新申请的内存做初始化工作 用 法: void *memset(void *s, char ch, unsigned n); 程序例: #include #include #include .........【阅读全文】
发布时间:2015-02-10 17:22:27
一 :<iostream>和<iostream.h>是不一样,前者没有后缀,实际上,在你的编译器include文件夹里面可以看到,二者是两个文件,打开文件就会发现,里面的代码是不一样的。 后缀为.h的头文件c++标准已经明确提出不支持了,早些的实现将标准库功能定义在全局空间里,声明在带.h后缀的头文件里,c++标准为了和C区别.........【阅读全文】
发布时间:2015-02-07 15:43:38
如下程序: #include <iostream> #include <string> using namespace std; class Student { public: static int number; string name; public: Student() { } &nbs.........【阅读全文】
发布时间:2015-02-06 14:51:16
函数名: strdup功 能: 将串拷贝到新建的位置处用 法: char *strdup(char *str); 这个函数在linux的man手册里解释为:The strdup() function returns a pointer to a new string which is aduplicate of the strings. Memory for thenew string is obtained withmalloc(3),.........【阅读全文】