我想動態創建一個char數組。然而,不管我把它放在哪個數字作爲size數組的期望值,它只是繼續使用4的大小。如果我把3,2甚至8,10也不會改變......動態字符數組,大小固定?
部分,我將其初始化...
char *x;
x = (char *)calloc(10, sizeof(char));
if(x == NULL)
{
return;
}
cout <<"Size_Vector = "<<sizeof(x)<<endl; //Keep making the size of the array 4..no matter what
cout在C中不存在。 – 2012-04-18 04:40:10