C语言中,一个指向函数的指针,该函数有一个整型参数并返回一个整型数,正确的写法是?
选项A:int (*a)(int);
选项B:int (*a)[1];
选项C:int (*a)(*int)
选项D:int a(*int)
正确答案:选项A