Write a C++ statement to declare a two – dimensional array n…

Write a C++ statement to declare a two – dimensional array named matrix of 4 rows and 3 columns of type double such that the first row is initialized to 2.5 , 3.2 , 6.0, ; second row  is initialized to 5.5,7.5,12.6; the third row is initialized to 11.25 , 16.85 ,13.45; and the fourth row is initialized to 8.75 ,35.65,19.45. FULL PROGRAM NOT REQUIRED.