C语言指针使用例(指针自加自减运算、数组与指针、字符串与指针)
1.在一个已按升序排列的数组中插入一个数,插入后,数组元素仍按升序排列
#include<stdio.h>
#define N 10
void fun(int *a)
{
int number,i;
printf("Please enter a integer to insert in the array:");
scanf("%d", &number);
for...
原创
2020-01-30 11:43:42 ·
1846 阅读 ·
0 评论