请编写函数 fun ,函数的功能是查找 x 在 s 所指数组中下标的位置,并作为函数值返回,若 x 不存在,则返回 -1 。 注意:部分源程序在文件 PROG1.C 文件中,请勿改动主函数 main 和其他函数中的任何内容,仅在函数 fun 的花括号中填入你编写的若干语句。 #include
#include
#define N 15 void NONO(); int fun( int *s, int x) { } main() { int a[N]={ 29,13,5,22,10,9,3,18,22,25,14,15,2,7,27},i,x,index; printf("a 数组中的数据 :\n"); for(i=0; i