摘要:
知识点: 1指针、数组和地址之间的关系 数组的基地址是在内存中储存数组的起始位置,他是数组中第一个元素的地址,所以数组名本省是一个地址即指针值。 指针是以地址作为值得变量,而数组名的值是一个特殊的固定地址,可以把它看作常量指针。 2字符串和字符指针 如果定义一个字符指针接收字符串常量的值,该指针就指 阅读全文
摘要:
#include void sort(int a[],int n); int main(void) { int n,a[5]; int i; printf("请输入一个n(na[j+1]) { t=a[j];a[j]=a[j+1];a[j+1]=t; } } #include int search(int list[],int n,in... 阅读全文