- 论坛徽章:
- 0
|
在潭浩强的 c语言程序设计教程里,有213页上有这么一段程序
#include "stdio.h"
#define N 12
main ()
{
static float a[] = { 1.5,3.8,5.6,7.8,91.6,1.61,13.3,15.0,17.5,19.9,21.7,23.0};
float arr_add(),odd_add(),arr_ave(),arr_max();
void process(float *p,int n,float (*fun)());
int n = N;
printf("the sum of %d elements is :",n);
process(a,n,arr_add);
printf("the sum of odd elements is :" ;
process (a,n,odd_add);
printf("the average of %d elements is :",n);
process (a,n,arr_ave);
printf("the maximum of %d elements is :",n);
process(a,n,arr_max);
}
float arr_add (float arr[],int n)
{
int i;
float sum = 0;
for (i = 0;i < n ;i++)
sum = sum + arr;
return (sum);
}
float odd_add (float *p,int n)
{
int i;
float sum = 0;
for ( i = 0; i < n ;i = i + 2,p = p + 2)
sum = sum +*p;
return (sum);
}
float arr_ave( float *p,int n)
{
int i;
float sum = 0,ave;
for (i = 0;i < n;i ++)
sum = sum + p;
ave = sum/n;
return (ave);
}
float arr_max (float arr[],int n)
{
int i;
float max;
max = arr[0];
for ( i = 1;i < n;i ++)
if (arr >; max ) max = arr;
return (max);
}
void process (float *p,int n,float ( *fun)())
{
float result;
result = (*fun )(p,n);
printf ("%8.2f\n",result);
}
其中main函数中的函数声明语句
float arr_add(),odd_add(),arr_ave(),arr_max();
为什么各个函数的形参都没有给出,照样可以编译通过执行?
不是说必须给出形参的类型吗?
不明白啊 |
|