1.二分法 2.宏定义 3.条件编译 4.创建头文件 #include void Fun(int arr[],int a,int length)...
1./结构体的基本用法 //习题 #include #include ; struct student { int mumber; char n...
#include #include //1.从键盘上输入10个数据到一维数组中,然后找出数组中的最大值和该值所在的元素下标. void sear...
#include #include int n=0; int arr[100]; //十进制转换八进制 void Tes1(int a) { a...
1.指针的基本使用 #include #include void Test1() { char strArr[5][10]={"qwer",...
1.全局变量和局部变量的使用 习题 #include int arr[5][5]={ 1,2,5,5,4, 7,8,5,6,4, 7,5,6,9...
1.函数的基本使用 //习题 #include void chline(int i,int j,int (*arr)[5])//习题3 { pr...
1.字符串 : strlen strcat 2.getchar getche getch //习题 #include void main() {...
1.字符串 的简单使用 strcpy strcmp mencpy mencmp //习题 #include #include void main...