1. 程式人生 > >64位系統指標佔用位元組數

64位系統指標佔用位元組數

64位編譯器,佔用8個位元組。

// testPointer.cpp : 定義控制檯應用程式的入口點。
//

#include “stdafx.h”

int iGlobal; //全域性
int GetValue()
{
int intGlobal = 99; //區域性
return 1;
}

int main()
{
iGlobal = 2018;
// intGlobal = 0; //為什麼不可以訪問函式內部的變數?

char* pString = "hello world";

#ifdef WIN32
printf_s(“32位程式地址佔用位元組數:%d\n”, sizeof(pString));
#else
printf_s(“64位程式地址佔用位元組數:%d\n”, sizeof(pString));
#endif
return 0;
}

2018-11-23 10:37:56,友誼路。