char 配列を動的に作成しようとしています。ただし、サイズ配列の目的の値としてどの数値を入力しても、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