Computer Science, asked by rajkeerthi186, 9 months ago

How will you declare a single dimensional array to store 10 values of float type?​

Answers

Answered by LakshmishreeR
1

Answer:

float x[]=new float [10];

Explanation:

a variable x with double brackets of float data type is created using the new keyword

Similar questions