Biology Forums - Study Force

Science-Related Homework Help Computer Studies Topic started by: jujubee600 on May 5, 2020



Title: Which of the following is correct to create an array?
Post by: jujubee600 on May 5, 2020
Which of the following is correct to create an array?

▸ int[] m = {1, 2, };

▸ int[] m = {{1, 2}};

▸ int[] m = {1, 2, 3};

▸ int[] m = {{1, 2}, {3, 4}};


Title: Which of the following is correct to create an array?
Post by: tlaster on May 5, 2020
Content hidden