i dont get the 2ns parameterCode:float foo (int n, float (*f) (int))
it is a pointer to a float but what is that (int) following it![]()
This is a discussion on what does this function header mean within the C Programming forums, part of the General Programming Boards category; Code: float foo (int n, float (*f) (int)) i dont get the 2ns parameter it is a pointer to a ...
i dont get the 2ns parameterCode:float foo (int n, float (*f) (int))
it is a pointer to a float but what is that (int) following it![]()
It's a pointer to a function that returns float and takes int as an argument.
thanks dude![]()