首先我有声明
char (*x)(int field);
char yes_or_no(int);
char yes_or_no(int field)
{
if(field==1)
return 'y';
else
return 'n';
}
x=&yes_or_no;
printf("Now we can call this function by using the pointer *x by using (*x)(1),\nwhich gives us: \n'%c'\n", (*x)(1));
这工作正常,但现在我必须做点什么
char *y(int field);
哪个是或可能是函数的声明?我怎么能用最后的声明/声明做“某事”?
亲切的问候。