我有一个功能,我想通过各种功能
int func1(char *ptr)
{
printf("%s",ptr);
return 0;
}
和我想调用 func1 的其他函数
int func2(void *i)
{
//call i
//here i point to function func1
//and do something with return value of i
}
那么,我应该如何在 main() 中调用它?
int main()
{
void *d;
//SOMETHING wrong in next four line
d=&func1("abcd");
func2(d);
d=&func1("xyz");
func2(d);
return 0;
}