The designers of C chose to name their types in a way that the use case of the type matches, as closely as possible, the way in which you use that type to get a value. So, for example, when you have a declaration like
int a;
You can just say a to get an int. If you have a type like
int *a;
Then you have to dereference a by writing *a to get an int.
You can use similar, albeit more complex, logic to decode the types you posted. Let's start with
void (*a)(int x, int y)
This says that if you dereference a (by writing *a), then what you're left with is something that looks like
void (int x, int y)
Which is a function taking in two ints and returns void. In other words, you can think of a as a pointer to a function; once dereferenced, you get back the function.
Now for this beast:
void (*b(int x, int y))(int)
This one's trickier. The idea is as follows. If you take b and pass in two arguments into it, then you get back something that looks like this:
void (*)(int)
Which is a pointer to a function taking in an int and returning void. In other words, b is a function that takes two arguments, then returns a function pointer that takes one argument and returns void.
It's somewhat tricky to decode these types, so often you don't seem them written this way and instead use typedef to simplify things. For example, this typedef:
typedef void (*FunctionTakingTwoInts)(int, int);
Says that you can use FunctionTakingTwoInts to define a function pointer that points at a function that takes in two ints and returns void. From here, the declaration of a simplifies down to
FunctionTakingTwoInts a;
Similarly, in the case of b, let's define the type
typedef void (*FunctionTakingOneInt)(int);
Now, we can rewrite b as
FunctionTakingOneInt b(int x, int y);
From which, I think, it's much clearer what the type actually means.
Hope this helps!