c
文章平均质量分 80
promenader
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
C语言复习
程序通常以文件的方式存放在磁盘上,运行程序需要将程序装入内存,可执行文件中的主要部分是二进制编码的机器指令和数据,C语言需要通过编译器的编译成obj文件,然后通过链接程序链接库文件生成可执行程序。编程:从键盘输入两个整数,输出最大者#include int main(){ int max(int,int); int a,b,m; scanf("%d%d",&a,&b);原创 2014-03-20 21:34:34 · 542 阅读 · 0 评论 -
数据结构c语言学习
学习数据结构练习:定义头文件:def.h#include #include #include #include #include #include #include #include #include #define TRUE 1#define FALSE 0#define OK 1#define ERROR 0#define INFEASIBLE -1//#原创 2014-03-26 17:13:08 · 629 阅读 · 0 评论
分享