我用函数指针编写了这个程序,但它给出了错误
Lvalue required in function main
,为什么?
#include<stdio.h>
fun();
main()
{
int fun();
int *ptr();
ptr=fun; //this line gives error
*ptr();
}
int fun()
{
printf("amol singh");
return 0;
}
我用函数指针编写了这个程序,但它给出了错误
Lvalue required in function main
,为什么?
#include<stdio.h>
fun();
main()
{
int fun();
int *ptr();
ptr=fun; //this line gives error
*ptr();
}
int fun()
{
printf("amol singh");
return 0;
}