w******1 发帖数: 520 | 1 下面的这几个是错的么? 都是什么意思啊? 我觉得三个答案都是错的
about pointer to funciton :
how will a pointer to a pointer to a function will be declared
void (*(*ptr[]));
void *ptr[];
void (**ptr[]) |
s********l 发帖数: 998 | 2 1,3括号都不对称 当然错了。。。
2 unknown size
【在 w******1 的大作中提到】 : 下面的这几个是错的么? 都是什么意思啊? 我觉得三个答案都是错的 : about pointer to funciton : : how will a pointer to a pointer to a function will be declared : void (*(*ptr[])); : void *ptr[]; : void (**ptr[])
|
s*****n 发帖数: 162 | 3 How about
int (*(*ptr))();
ptr is a pointer to a pointer that points to a function which returns int
【在 w******1 的大作中提到】 : 下面的这几个是错的么? 都是什么意思啊? 我觉得三个答案都是错的 : about pointer to funciton : : how will a pointer to a pointer to a function will be declared : void (*(*ptr[])); : void *ptr[]; : void (**ptr[])
|
w****r 发帖数: 1384 | 4 this one is right,
【在 s*****n 的大作中提到】 : How about : int (*(*ptr))(); : ptr is a pointer to a pointer that points to a function which returns int
|
w******1 发帖数: 520 | 5 你这个答案, 就是网上给的建议答案。
但是评论中, 没人同意。 所以我就拿不准了。
【在 s*****n 的大作中提到】 : How about : int (*(*ptr))(); : ptr is a pointer to a pointer that points to a function which returns int
|
w******1 发帖数: 520 | 6 你这个答案, 就是网上给的建议答案。
但是评论中, 没人同意。 所以我就拿不准了。
【在 s*****n 的大作中提到】 : How about : int (*(*ptr))(); : ptr is a pointer to a pointer that points to a function which returns int
|
r****o 发帖数: 1950 | |