-6
這裏是我的代碼,這是造成此錯誤:我得到「分段錯誤」取消引用特定索引。如何解決它?
int *marks[4];
cout<<"\nPlease enter marks of PF: ";
cin>>*marks[0];
cout<<"\nPlease enter marks of LA: ";
cin>>*marks[1];
cout<<"\nPlease enter marks of CS: ";
cin>>*marks[2];
cout<<"\nPlease enter marks of Phy: ";
cin>>*marks[3];
cout<<"\nPlease enter marks of Prob: ";
cin>>*marks[4];
我進入前兩個值進行標記後得到這個錯誤[0] &標記[1]。
1.您沒有爲整數分配內存。 2. *標記[4]超出界限。 3.你真的需要一個動態數組嗎? – drescherjm
您應該回答這個問題 –
現在沒有任何特定的任何移除標籤。 –