每个指针所占的存储空间是多少
Issue 欢迎在 Gtihub Issue 中回答此问题: Issue 168
Author 回答者: shfshanyue
与字长有关。如果是64位系统,则占八个字节,32位系统,则占四个字节。可以用 sizeof
测试
#include <stdio.h>
int main() {
int *p;
printf("size: %d", sizeof(p));
}
Issue 欢迎在 Gtihub Issue 中回答此问题: Issue 168
Author 回答者: shfshanyue
与字长有关。如果是64位系统,则占八个字节,32位系统,则占四个字节。可以用 sizeof
测试
#include <stdio.h>
int main() {
int *p;
printf("size: %d", sizeof(p));
}