以下のプログラムがあるとします。
typedef struct xyz
{
int abc[6];//int abc;
//int yz;
}xyz;
int main()
{
int *ptr = new int(10);
int *ptr1 = new int(20);
xyz* XYZ = reinterpret_cast <xyz*>(ptr); //Initializes XYZ->abc[0]
XYZ = reinterpret_cast <xyz*>(ptr1);//Initializes XYZ->abc[0]
}
ここで値が に入りzeroth location
ます。値を にプッシュしたい場合XYZ->abc[1]
、どうすればこれを行うことができますか?