10) Two Dimensional Arrays: Write a program that finds two points in a three-dimensional space nearest to other. Use a two-dimensional array to represent the points. Test the program using the following points:
double points[][3] = {{-1, 0, 3}, {-1, -1, -1}, {4, 1, 1}, {2, 0.5, 9}, {3.5, 2, -1}, {3, 1.5, 3}, {-1.5, 4, 2}, {5.5, 4, -0.5}};
The formula for computing the distance between two points ($x_1$, $y_1$, $z_1$) and ($x_2$, $y_2$, $z_2$) is
$\sqrt{(x_1 - x_2)^2 + (y_1 - y_2)^2 + (z_1 - z_2)^2}$