系统相关
首页 > 系统相关> > 056.指针-指针所占用的内存空间

056.指针-指针所占用的内存空间

作者:互联网

#include <iostream>
using namespace std;
int main()
{
    //指针所占用的内存空间大小
    int a = 10;
    int* p = &a;
    //32位操作系统,指针占用4个字节空间大小,不管什么数据类型
    //64位操作系统,指针占用8个字节空间大小;
    cout << "sizeof(p)=" << sizeof(p) << endl;
    cout << "sizeof(int *)=" << sizeof(int*) << endl;
    cout << "sizeof(float *)=" << sizeof(float*) << endl;
    cout << "sizeof(double *)=" << sizeof(double*) << endl;
    cout << "sizeof(char *)=" << sizeof(char*) << endl;

    system("pause");
    return 0;
}

 

标签:字节,int,占用,内存空间,056,操作系统,指针
来源: https://www.cnblogs.com/ceovs/p/15226523.html