- 9
Write the algorithm for deleting and inserting a two dimensional array
two algorithm
4 Réponses
+ 2
Write the algorithm for deleting and inserting a two dimensional array
two algorithm
0
Tnx
- 1
int arr[3][3];
for (int i = 0; i < 3; i++)
{
for (int j = 0; j < 3; j++)
{
std::cin >> arr[i][j];
}
}
- 1
how to delete an item from 2D array??