针对下面的说明中,
typedef int (*FuncType1)(char x1, char y1);
typedef int (*FuncType2)(char x2);
typedef int (*FuncType3)(int x3, int y3);
typedef int (*FuncType4)(int x4);
FuncType1 Func1;
FuncType2 Func2;
FuncType3 Func3;
FuncType4 Func4;
int FuncA(int a1, int a2);
哪项是正确的:( )
(A) Func1 = FuncA;
Func1(300,300);
(B) Func2 = FuncA;
Func1(300);
(C) Func3 = FuncA;
Func3(300,300);
(D) Func4 = FuncA;
Func4(300,300);
慕少森