typedef int F1(int x);
int F1(int x);
Seems the same to me,either with typedef or not..
|
|
After you say:
later in your code you can have this:
which is equivalent to:
|
|||||
|
You define a function type F1 which is function taking a integer as argument and returning an integer
You define a function which is called F1 |
|||||||||||||||||
|