搜索资源列表
模仿basic函数的某些c语言函数
- 模仿basic函数的某些c语言函数-imitate basic function of certain language functions c
日期、菜单、字符串的C函数
- 日期、菜单、字符串的C函数-date, menu, the C string functions
C函数
- C函数的大量示例-C function of a large number of examples
c_plus_plus_learning
- 学习c++函数库的例子,包含大多数c++标准库函数和容器及算法-learning c functions example, contains most of the standard library functions c and containers and algorithms
C++applicationProgram200
- C++应用编程200例--------专为广大学习和使用C++语言的读者设计的,旨在帮助读者更快更有效地掌握C++语言。全书共分4部分,通过大量实例全面系统地介绍了C++语言程序设计的基本概念和方法,主要内容包括:基本运算、数据类型、程序结构、函数、类与对象、预处理指令、文件处理、函数模板、类模板和STL的使用等。 这些是书中的代码 -C Application Programming -------- 200 cases for the majority of the learning and
c++primeranswer
- C++ Primer 第三版 学习辅导 类的创建、继承、虚函数的使用 bugzhao@sohu.com 原书第23~40页 可以将断点设置在return 0处,然后按F5, 并记录下所有整型数组类ia指针的值,比如: 0x00491f90 0x00491f50 0x00490120 0x00491da0 0x00491d50 然后当调试指针停在return 0处时单步执行, 跟踪每一次析构函数,可以发现后创建的对象最先被消除。
M-call-C
- 混合编程时,M文件中调用C语言函数,精通matlab编程一书的例程,希望有帮助。-mixed programming, the paper called M C language function, proficient Matlab programming routines in a book. hope it helps.
C.hanshu
- C语言函数..应用示例-C language function application examples ..............
c++funDEMO
- 很好的 关于C++的例子 我想你要是可以把上面的例子都做好了 看明白了 关于函数指针这一部分你应该学的很好了 -good example of C I think if you can put the above examples can understand well on the function pointer This part you should learn a very good
CfunctionLib
- 最经典的C函数库,共分17篇,分别为进程操作篇,内存控制篇,信号处理篇,环境变量等17篇
candc++languagereference
- 很好的一本工具书,提供了C/C++函数查询,分为以下几个方面阐述,预处理命令、关键字、标准C的I/O,String,Charactor,Math,Time,Data,Memory,以及C++的I/O,String,及标准模版类。推荐。
c-code
- c语言的常用函数集,比较全的.有些BUG我已经做过修改,可以在turbo c,borland c,Visual c++6.0(当然可能麻烦一点)上使用
LinuxCFunctionLibraryManual
- Linux C 函数库 参考 手册 无所不包-Linux C Library Reference Manual all-encompassing
C经典程序
- 最基础的C语言程序,覆盖输入输出操作,数组,函数,指针,文件等,很典型。(The most basic C language program, covering the input and output operations, arrays, functions, pointers, documents, etc., is very typical.)
经典编程900例(C语言)
- C语言经典代码,包括数学函数,数组,文件,字符串,键盘等(the classical code of C)
经典编程900例(C语言)
- C语言经典编程900例,包含.c源文件,熟悉C语言文件操作,数学函数库的使用等(C language classic programming 900 cases)
C语言函数的嵌套调用
- 初学C的一些数据类型知识,为初识C语言的学习朋友提供便利。(Beginner C some of the data types of knowledge, to provide convenience for the first C language learning friends.)
C语言中printf的使用
- printf()函数是式样化输出函数, 一般用于向准则输出设备按规定式样输出消息。正在编写步骤时经常会用到此函数。printf()函数的挪用式样为: printf("<式样化字符串>",<参量表>);(The printf () function is a stylized output function, which is generally used to output messages to a standard output dev
C语言中scanf的使用
- 首先需要#include <stdio.h>int scanf( const char *format, ... );scanf()函数是格式化输入函数,它从标准输入设备(键盘) 读取输入的信息。第一个参数format为一个常量字符串,这个字符串中如果包含‘%’符号则使用后续参数进行匹配如:scanf("%d%d", &a, &b);(First, we need #include <stdio.h>int scanf (const c