搜索资源列表
Simple
- 嵌入式USB代码,用C语言描述,有头文件,启动文件-Embedded USB code, using C language descr iption has header files, startup files
excel
- c语言中头文件的解释,应该很不错的,注意看哦,希望对你有帮助-header file in c language interpretation, should be very good,看哦attention, and they hope to help you
several_details_on_C
- 文件包括C函数调用的深层机制,C缺陷与陷阱,C语言头文件的使用以及C里的文件读取探索四篇TXT文档。-Documents include C function calls the underlying mechanism, C defects and traps, C language header files, as well as C where the use of exploration 4 TXT file to read the document.
C-header-file
- C语言头文件大全,里面包含后缀为.h的文件-C header file daqo, contains suffix for documents of “.h”
dsp
- dsp的c语言编程,头文件,源文件,存储文件-dsp c programming language, header files, source files, store files
c_head_description_.chm.tar
- 这是一本关于标准C语言头文件的详细说明,里面费力列举里各个头文件,并用中文标注有什么作用,编程的时候方便查阅和使用-This is a detailed descr iption of the standard C language header file, which effort listed inside header files, and with Chinese marked what role, convenient access to and use of programming
auto_focus
- 该方案配合SONY DSP CXD4140、CXD4151、 CXD4191、韩国UC2500GW等百万高清DSP来实现数字对焦,变倍过程跟踪对焦,使得图像在变倍过程中清晰稳定,并实现中英文菜 单,也可搭配普通模拟CMOS单片CCD板实现,外部控制接口采用TTL SONY VISCA协议(接口电平5V、3V3) 镜头采用进口或 国产3倍、18倍、22倍、36倍自动聚焦镜头 程序采用标准C语言模块化编写,方便日后生产中升级,使用不同厂家镜头时只需修 改镜头头文件即可;-The pr
elimite_abnomal
- 程序中异常数据的存在会严重的影响分析结果,因此在数据处理前需要将异常数据去掉,本程序利用C++语言编写的去除异常值的程序。且有word原因与结果说明,并且头文件中有具体的子程序,对于初学者非常有帮助。-The presence of the program abnormal data can seriously affect the results, so before the data processing need to remove the abnormal data, using thi
stack
- 运算符重载的栈。C++语言编写的头文件。可以入栈出栈赋值打印等操作。-Operator Overloading stack. C++ language header file. You can stack the stack assignment printed.
write_printf_yourself
- C语言变参_实现自己的printf,详细讲解变参在堆栈中的存放和读取,讲解如何实现一个变参函数,最终给出实现一个printf的参考,对于不能支持printf的系统非常有帮助,建议使用标准头文件stdarg.h。-C language parameters _ to achieve their own printf, explain in detail on the stack in the storage and read, explain how to achieve a variable f
c++头文件大全
- 1. 头文件只是声明,不占内存;在编译时会被合并到源文件 2. 头文件和其它C语言文件一样可以引用其它文件,可以写预处理块但是不要出现具体语句 3. 可以在头文件中定义宏函数,其本质上还是一个声明 4. 各个头文件相互独立,标准头文件之间不存在相互包含关系 5. 头文件可以重复引用,但是相当于只导入一次 6. 从C语法角度讲完全可以在头文件中写任何东西,因为#include在作用上和Ctrl-C + Ctrl-V等效——但是这样时不推荐的;头文件的作用就是更好的组织代码