Computer Science, asked by ashwinikulal594, 8 hours ago

#include <stdio.h>
void f(int (*x)(int));
int myfoo(int);
int (*fooptr)(int);
int ((*foo(int)))(int);
int main()
{
fooptr = foo(0);
fooptr(10);
}
int ((*foo(int i)))(int)
{
return myfoo;
}
int myfoo(int i)
{
printf("%d\n", i + 1);
}​

Answers

Answered by adusumillisrinivasu
5

Answer:

your question is not understandable brother or sister

could you please rewrite it

Then only someone is able to answer your question

Answered by mariam1907
2

Answer:

11

Explanation:

Similar questions