在運行下面的代碼的:默認類型符號,無符號,const和volatile
int main()
{
int a = sizeof(signed) + sizeof(unsigned);
int b = sizeof(const) + sizeof(volatile);
printf("%d",a+++b);
return 0;
}
在Visual C++,我得到作爲16的輸出的signed
,unsigned
,const
和volatile
缺省數據類型考慮int
?
你是真的急於寫這個問題嗎? – Shahbaz
含糊不清的補充背後的原因是什麼? – Lundin