I want to know what will happen to the array using this.
double [] array = new double[] {0}
does it initialize an array that all of its elements are zero? and if so what will the length of the array be.
I want to know what will happen to the array using this.
double [] array = new double[] {0}
does it initialize an array that all of its elements are zero? and if so what will the length of the array be.