搜索资源列表
C++语言ISO标准文档
- C++语言ISO标准文档 C03
chkc_tar
- 这是一个使用标准 C 开发的简单的可以对 C 语言程序进行语法检查的程序,本程序检查你的程序中小括号、中括号、大括号、单引号、双引号、/* */ 注释等的配对情况,可以及时发现程序中存在的语法错误情况。-This is a standard C development can be a simple C language syntax procedures for the inspection procedures, the procedures check your procedures sm
“C语言接口”扩展程序调用接口规范
- 分析家扩展函数规范V3.10 1.本规范适用于分析家3.10标准版和专业版公式系统. 2.扩展函数用于实现系统函数不能实现的特殊算法. 3.扩展函数用windows 32位动态连接库实现,建议使用Microsoft Visual C++编程. 4.调用时在公式编辑器中写\"动态库名称@函数名称\"(参数表)即可,例如下面函数可以写为\"FXJFUNC@MYCMALOSE\"(5) 5.动态连接库名称和函数名称可以自己定义. 6.使用时可以将动态库拷贝到分析家目录下使用.-V3.10 a stan
ansi_lex
- 标准C的词法分析的Lex文件,可以用lex来 编译生成标准C的词法分析部分-standard C lexical analysis Lex documents can be used to lex standard C compiler generation of lexical analysis
ansi_yacc
- 标准C的语法分析的yacc文件,可以用bison 等语法分析生成器编译,生成标准C的语法 分析部分,可以和前面的Lex部分组成C编译 器的前端-standard C syntax analysis generates a file that can be used, such as bison syntax analysis compiler generator, generate standard C syntax analysis, and can in front of Lex
ADlist
- 一个用标准c编写的通讯录程序,环境Turbo C,通讯录系统中保存着各人员的姓名、电话、住址、邮编等信息,通过该系统的界面可以浏览这些信息,也可以插入、添加及删除某个人员的信息-c a standard procedure to prepare the directory, the environment Turbo C, Contacts system with the officers to keep the name, telephone, address, zip code and ot
libc
- vxworks libc库源代码,标准C代码库实现 assert ctype locale math setjmp stdarg stdio stdlib string time -vxworks libc the source code, standard C code library to assert ctype locale math setjmp stdar g stdio stdlib string time
dugide21
- 一个标准C程序,用来获取磁盘的ID等信息。 EXE: included an executable file created with the Symantec C++ compiler. 但是同样可以在VC下编译。-a standard procedure used to obtain disk ID information. EXE : included an executable file created with the Sy mantec C compiler. But t
freetype
- 这是一个TrueType字库操作模块,通过它,您可以直接访问*.ttf字库,读取字库的风格、某个字的轮廓、闭包等等各种信息。 该模块中包含了足够的源文件,都是以标准C编制的,可以在任何编译环境下进行编译,并且还有调用例子供参考。接口定义见freetype.h文件。-This is a TrueType font operation module, through it, You can directly access *. ttf font, reading the font sty
cmap
- 这是一个从区位码到Unicode码的变换模块,在汉字处理时经常会用到这种程序,它通过读取一个转换文件,构建一个散列查找表,用于完成从区位码到Unicode码的变换。通过反转码表或者更改码表,该模块还可用于反向变换,或者用于其它需要快速变换的地方。 该模块中包含了足够的源文件,都是以标准C编制的,可以在任何编译环境下进行编译,并提供了调用例子及测试文件。接口定义见cmap.cpp文件。-This is an area code from Unicode code to transfor
C++bianchengjichubiaozhunkubiancheng
- <C++编程基础库标准编程>自带光盘源码.码
C++N!suanfa
- 用VC6.0编译出的求阶乘算法(0---10000)标准C 语言控制台应用程序
可生成噪声的c程序
- 可生成噪声的c程序:标准c编程环境,可以用于声音方面的特殊需求-generates noise c : c standard programming environment that can be used in the voice of special needs
c
- 标准C语言学习代码,可以为初学者提供入门帮助。-Standard C language code, you can provide help getting started for beginners.
C
- 微软自带计算器标准,日文版C#小型计算器,有加减乘除功能,程序繁冗,界面精致-Microsoft' s own standard calculator, the Japanese version C# small calculators, multiplication and division with addition and subtraction functions, procedures burdensome, interface refinement
Objective-C.pdf
- objective-c是当下火热崛起的语言 是用来开发ios的程序标准语言 学习这个是很重要的-this book is useful to you
FFT-and-FFT-2D-ANSI-C
- 标准C语言实现的一维和二维快速傅里叶变换代码,代码运行时不需要额外占用多余的内存空间,简单易用,具体可见代码说明。-FFT and 2 dimension FFT algorithm acommplished with ANSI C.It occupies the least memory space while running after embeded into you project.The source code is easy and brief,you can check the t
C++標準庫示例
- C++标准库示例,包含了测试代码,来源候捷C++课程(c++ standard library)
C++并发编程实战
- 本书是基于C++11新标准的并发和多线程编程深度指南(C++ Concurrency in Action)
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