Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Які способи створення масиву є припустимими?
int[] arr = int[5];
int[] arr = new int[3]{10, 20, 30};
int[] arr = new int[]{10, 20, 30};
int[] arr = new int[5];
int[] arr = {10, 20, 30};
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!