搜索资源列表
pclint
- PClint,一个非常严格的C/C++编译器, 可以嵌入到VC.GCC等.它甚至能够检查出你C/C++代码中的内层泄漏问题,变量未初始化问题,不安全的使用指针等...微软公司把它作为代码检查工具,只有通过它才能正式发行-PClint, a very strict C / C compiler, can be embedded into VC.GCC so. It can even check out your C / C code in the inner leakage, uninitiali
xlist
- STL太复杂,这里给出了一个简单容器类的程序,c++开发可以非常方便使用.为简单数据类型,指针分别创建了类-STL too complicated, here is a simple container such procedures, c development it is easy to use. For simple data types, respectively, to create a pointer type
keil_c51_maule
- 个人收藏的14篇有关KEIL C51语言编程的使用要点。 目录: C51变量或数据类型 C51 怎样将1个子程序段定位在1个固定的地址位置 C51存储模式 C语言下的单片机软件抗干扰实现的基本技巧之一---------对绝对地址的访问 DOS界面的KEIL C编译器的使用方法(^_^) keil51开发系统概述 Keil C51函数(不仅仅是函数,呵呵) Keil C51扩展关键字 Keil C51软件包中的
Lesson19Code
- 动态链接库程序的编写。静态库与动态库的区别,以及调用程序在链接静态库和动态库时的区别。如何利用工具查看动态链接库输出的函数,Depends工具的使用,C++编译器名字改编技术对动态链接库输出函数的影响,extern \"C\"的用法,利用模块定义文件来解决C++名字改编的问题。用typedef定义指向函数的指针类型,如何获得动态连接库里的函数的指针。-dynamic link library of writing. Static and Dynamic Library for the disti
asm_module
- 该程序模拟UNIX中save与resume函数,并介绍在VC中如何使用汇编进行机器级的操作. 主函数很简单首先引入两个外部函数,extern \"C\"表示按传统C命名习惯.函数save将程序指针保存在(*s)中并返回0,为什么有 if(save(&sp)){...} if后的语句看起来永远都不会被执行,但是运行结果表明它被执行了.这个问题同UNIX中处理机调度函数(switch)的那个if语句(第一句)一样. 程序执行完save(&sp)后得到因为条件为假而执行else语句,
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
c
- c入门代码大全,算法大全,数据类型,文件,指针-c Guinness entry code, algorithms Guinness Entry code Guinness, Guinness algorithm, data type, file, pointer
CPROEXERCISE9
- C programming exercise - about pointer-C programming exercise- about pointer
SophiaDelegate_20070523
- 委托是.NET内的一个很好用的东西,用C++函数指针实现委托,C++也能用委托-A delegate is. NET is a good use within the things that C++, delegate function pointer, C++ also be able to delegate
C-Code-Development-Tits(all)
- 聪明的程序员用delphi,而真正的程序员用c!但在c的学习过程中,由于其指针的高度自由化和灵活度,使得学习起来困难重重,然而学习c也是有章可循的,c语言程序开发范例宝典全代码,系统的展示了c如何由初级学习到高级进阶的全过程,所有的代码均有详细的解释,同时解决了c程序员在开发过程中的各个疑难杂症,可谓不可多得的撼世之作。-Smart programmers use delphi, but the real programmer uses c! however, at the c of the l
C-and-Point
- c 与指针是本非常好的书 能详细地介绍c语音中的指针应用 值得大家细细品味-c pointer is a very good book to detailed descr iption of the application of pointer in c voice worth to savor
C-souce
- 《C与指针》的配套书籍源代码,是C语言学习方面的经典自恋-C pointer matching books source code, C language learning classic narcissistic
Object-C-DLLN
- 在双向链表能完成各种插入节点,删除节点操作.与单链表上的插曲和删除操作不同,双向链表中插曲和删除可以同时修改两个方向上的指针.-Doubly linked list to complete various insert node, delete node operation. Episode, and delete operations on a single linked list, doubly linked list episode and delete pointer can modif
C-programming-cod1
- this program is add the two number by using pointer
Const-pointer
- C语言,Pointer Const pointer,c++编程,编程仿真-C language, Pointer Const pointer, c++ programming, programming, simulation
C-CPPpointer_study
- C/C++ 指针的13份资料 内容丰富,让编程人员不再害怕指针-a study for C/C++ pointer
c-language
- 压缩包中代码是几个比较基础的利用指针方法处理数据的代码,如进行数字的排序,换序,字符类型的辨别-Compressed code are a few more basic approach to the use of the pointer data codes, such as digital sort, change order, character type of discrimination
c
- 1.输入一行文字,找出其中大写字母、小写字母、数字字符、空格以及其他字符各多少。。要求编写一个函数实现统计功能,在主函数中输入一行文字、调用统计函数并输出统计结果。 2.写一个函数实现两个字符串连接,在主函数中输入和输出字符串,要求用字符指针变量作行参和实参-1. Enter the line of text to find out where the uppercase letters, lowercase letters, numbers, characters, spaces, and
big-and-small-using-pointer-array
- c-code to find large and small number the given input using pointer array.dev-c++ is used For the above code compilation -c-code to find large and small number the given input using pointer array.dev-c++ is used For the above code compilation
数据结构课设小题线性表的链式存储
- 链表是一种物理存储单元上非连续、非顺序的存储结构,数据元素的逻辑顺序是通过链表中的指针链接次序实现的。链表由一系列结点(链表中每一个元素称为结点)组成,结点可以在运行时动态生成。每个结点包括两个部分:一个是存储数据元素的数据域,另一个是存储下一个结点地址的指针域。(Linked list is a discontinuous and non sequential storage structure on physical storage unit. The logical order of da