C语言
这个很简单的嘛
这个作者很懒,什么都没留下…
展开
-
C语言-(3)-定义常量的三种方法
第一,定义常量的三种方法1,宏定义2,consnt3,枚举原创 2018-09-11 14:37:12 · 7471 阅读 · 0 评论 -
数据结构-(2)--顺序表--代码实现
说明:主函数中的插入函数和删除函数第三个参数都为位置参数:offsetmain.c#include<stdio.h>#include"orderlist.h"int main(){LIST * pList = NULL;//创建顺序表pList = createOrderList();if(NULL != pList)printf("顺序表创建成功\n")...原创 2018-09-08 20:47:56 · 237 阅读 · 0 评论 -
C语言-(1)-条件编译
第一种形式:#ifdef 标识符 程序段1 #else 程序段2 #endif解释:如果标识符被#define语句定义过,则编译程序段1 否则编译程序段2#incelud<stdio.h>#define NUM OK int main(){#ifdef NUMprintf("hello world");#elseprintf("hello...原创 2018-09-03 17:21:22 · 200 阅读 · 0 评论 -
C语言-(2)-存储类型
存储类型分别是auto(自动)extern(外部)register(寄存器)static(静态)原创 2018-09-11 14:37:35 · 218 阅读 · 0 评论 -
C语言-(4)-标准IO讲解
文件的概念: 文件:一组相关的数据的有序集合。 linux里,一切兼文件。 文件名:这个数据集合的名称文件分类: 1,文件内容 源文件、目标文件、数据文件等 2,文件操作方式 ...原创 2018-09-12 17:19:42 · 954 阅读 · 0 评论 -
C语言-(5)-标准IO-单字符代码实现
只读打开文件hello, 把读到的内容写到另一个文件hello中.linux terminal: ./a.out helloinclude<stdio.h>//主函数传参,第一个参数为传入参数个数,第二参数为存储所有传入的参数,通过下表调用int main(int arg,const char * argv[]){ //判断参数 ...原创 2018-09-12 17:22:13 · 195 阅读 · 0 评论 -
C语言-(6)-标准IO-行操作代码实现
从键盘输入一句话,请把它存放在文件word.txt中#include<stdio.h>#define SIZE 32int main(){ //键盘输入 printf("请在键盘上输入一句话\n"); //获取键盘输入 char buf[SIZE] = {0}; fgets(...原创 2018-09-12 17:50:34 · 228 阅读 · 0 评论 -
C语言-(7)-标准IO-块操作代码实现
将一个整型数组中的第2个元素到第6个元素写入文件data.doc中,清空数组,继续读入数组#include<stdio.h>#include<string.h>#include<unistd.h>int main(){ //定义一个数组 int array[] = {0,1,2,3,4,5,6,7,8,9};...原创 2018-09-12 21:49:48 · 253 阅读 · 0 评论