搜索资源列表
c++ 编程中你最需注意的地方
- 下面的这些要点是对所有的C++程序员都适用的。我之所以说它们是最重要的,是因为这些要点中提到的是你通常在C++书中或网站上无法找到的。如:指向成员的指针,这是许多资料中都不愿提到的地方,也是经常出错的地方,甚至是对一些高级的C++程序员也是如此。 这里的要点不仅仅是解释怎样写出更好的代码,更多的是展现出语言规则里面的东西。很显然,它们对C++程序员来说是永久的好资料。我相信这一篇文章会使你收获不小。-below those points of all C programmers are ap
bfgs(2).rar
- 另一个用c语言写的bfgs的程序,可以使用多元,高次函数的极小值搜索,Another written by c language bfgs procedures, you can use multiple, high-function of the minimum search
bfgs
- 用c语言写的bfgs的程序,可以使用多元,高次函数的极小值搜索-Written by c language bfgs procedures, you can use multiple, high-function of the minimum search
ccx
- 适合于初学者的c语言小程序。例如 题目:有1、2、3、4个数字,能组成多少个互不相同且无重复数字的三位数?都是多少? 1.程序分析:可填在百位、十位、个位的数字都是1、2、3、4。组成所有的排列后再去 掉不满足条件的排列。 -Suitable for beginners c language applet. For example, the topic: There are 1,2,3,4 digits, how many can be composed of m
c
- 一个linux 下的客户端的小程序,用c语言描写实现。运用消息队列以及通信进程的应用实现-Under a linux client applet, using c language descr iption of the achievement. The use of message queue, as well as communications applications process
linuxc
- 本程序使用linux 下的C语言得到本机的硬件地址的一个小程序-This procedure using the C language under linux to be the hardware address of the machine in a small program
sourt
- linux下C语言开发教程、案例、小技巧,GTK等资料。本人利用此资料完成过GTK应用程序的开发……更多资料待整理后一并共享-C language development under linux tutorials, cases, tips, GTK, etc.. I have been using this information to complete the development of GTK applications ... ... more information to be col
shell
- 这是一个用c语言模拟shell的小程序,比较适合学习Linux编程的各位。-This is a shell with a small c-language simulation program, more suitable for you to learn Linux programming。
ATM
- 自己练习的C语言小程序,ATM系统实现,无界面和数据库连接,用文件实现-Own practice C-applet, ATM system implementation, non-interface and database connection, use the file to achieve
Hero.tar
- 这是认真做的一个 五子棋小程序,比较适合刚学好C语言不久的同学,里面包含了一些小程序的一些基本的东西。个人觉得变成风格还是可以的,欢迎借鉴。 肯定有很多 不足的地方。一起探讨联系: 3768510-It is really doing a Gobang small program just to learn C language more suitable for students in the near future, which contains a number of small p
libu-2.0.0.tar
- LibU 是一个支持多平台的 C 语言程序库,包含很多独立的模块,例如:内存分配、网络和URI解析、字符串处理、调试和日志记录,LibU 是一个很小的库,差不多只有 70K 左右。这是一个模块化的,支持多平台,包括嵌入式平台的程序库。-libu
mytool
- 这是用c语言编写的一个小程序,你在linux下运行他,会帮你很好的理解什么是make和makefile。-It is written with a small c program in linux you run him, and will help you understand what a good make and makefile.
C
- 这里是5个在linux系统下的C语言编写的界面小程序。-Here are five the interface small program written in C language under linux system.
day09.tar
- unix c语言高级环境编程,一些小例子仅供参考,主要是使用C程序访问环境变量,系统提供了一个全局变量(include <stdio.h> int main(void){ extern char **environ; int i=0; while(*(environ+i)!=NULL){ printf("%s\n",*(environ+i)); i++; } return 0; })