#include #include FILE *fp; void test(){ fp=fopen(“t1.txt”.”wt+”); wt新建文 fp=fope...
IP属地:吉林
#include #include FILE *fp; void test(){ fp=fopen(“t1.txt”.”wt+”); wt新建文 fp=fope...
1.栈 后进先出 入栈int top=-1; 出栈char c=data[top]; top++; top--; data[top]=...
#include”stdio.h”用于引自定义.h文件,预处理文件; #define PI 3.14符号处理文件; #define定义符号常量 exit停止当前运行,不执行后...
线性结构:顺序表 把每一个字符串看成一个整型,就可以把一个二维看成一个一维; 数据类型:int long char float double; struct 结构体名 { 类...
形参相当于入口,返回值相当于出口; 例如: 面包fun(水a,面粉b){ 面包c; C=a*2+b; Return c } Int main(){ Fun(a b) } 函数...
函数: Int main(){ } 标识符:字母、数字、_,首不能是数字(_s2,s_2) 不能用关键字或保留字 返回值类型函数名(参数列表){ 函数体 } Void空返回值...
getchar 获取字符(只接收单个字符) putchar 输出字符(单个字符) getch()接受字符,不显示 getche()有返回显示 break 停止当前循环语句 c...
1.二维数组 行优先a[0] a[0][0] a[0][1] a[0][2] a[1] a[1][0] a[1][1] a[1][2] a[2] a[...