From the following which on is the correct syntax of an array-03288
From the following; which on is the correct syntax of an array declaration: array size is 5 and it is 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.20.
From the following; which on is the correct syntax of an array declaration: array size is 5 and it is of float data type?
float [5] name;
name[5] float;
float name[5];
None of the given options