/* 在cfree 下运行 通过 2006。8。8 */
#include <stdio.h>
#include <math.h>
float Sqrt(float n)
{
if(n<0)printf("ERROR!\n");
return sqrt(n);
}
void Operate1(float x,float (*fun)(float y) )
{
printf("%.1f\n", (*fun)(x) );
}
int main(void)
{
Operate1(1.2,Sqrt);
}
评论