C / C ++中的void指针的大小是多少?

空指针的大小因系统而异。如果系统是16位,则void指针的大小为2个字节。如果系统是32位,则void指针的大小为4个字节。如果系统是64位,则void指针的大小为8个字节。

这是一个示例,用于查找C语言中void指针的大小,

示例

#include <stdio.h>
int main() {
   void *ptr;
   printf("The size of pointer value : %d", sizeof(ptr));
   return 0;
}

输出结果

The size of pointer value : 8

在上面的示例中,创建了一个空类型指针变量,并通过使用sizeof()函数找出了空指针的大小。

void *ptr;
printf("The size of pointer value : %d", sizeof(ptr));