gpt4 book ai didi

c - 我无法理解这个错误

转载 作者:行者123 更新时间:2023-11-30 19:23:28 26 4
gpt4 key购买 nike

i have written this program with a pointer to function but it gives error Lvalue required in function main why?

#include<stdio.h>
fun();
main()
{
int fun();
int *ptr();
ptr=fun; //this line gives error
*ptr();
}
int fun()
{
printf("amol singh");
return 0;
}

最佳答案

这是工作代码:

#include<stdio.h>
int fun() {
printf("amol singh");
return 0;
}
main() {
int (*ptr)();

ptr=fun;
(*ptr)();
}

关于c - 我无法理解这个错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11814779/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com