struct root
{
struct Qgroup
{
struct Qpost
{
struct Qcomment
{
struct Qcomment *next;
int likes;
int address;
} QComment[100];
int likes;
int comments;
int address;
} QPost[100];
int address;
int posts;
int users;
}QGroup[8];
}*Root = (struct root *)malloc(sizeof(struct root *));
在以下行中獲取訪問衝突錯誤。錯誤顯示C++中的訪問衝突
for(int i=0;i<5;i++)
Root->QGroup[i].address = i*128+1024*1024;
請幫我解決這個問題嗎? 我試過了靜態分配和動態分配,但都沒有讀取上面循環中給出的數據。 此錯誤是從執行開始後main()