What will be the correct syntax to declare two-dimensional-03182
What will be the correct syntax to declare two-dimensional array of float data type?
This multiple choice question (MCQ) is related to the book/course vu cs201 Introduction to Programming. It can also be found in vu cs201 Mid Term - Quiz No.9.
What will be the correct syntax to declare two-dimensional array of float data type?
float arr{2}{2} ;
float arr[2][2] ;
float arr[2,2] ;
float[2][2] arr ;