// Keeping track of shots fired in Battleship game // using multidimentional arrays // Mikhail Nesterenko // 4/13/2013 // size of the ocean const int OCEAN_LENGTH = 5; const int OCEAN_WIDTH = 5; int main(){ bool shots[OCEAN_LENGTH][OCEAN_WIDTH]; // place your code here }