Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Який із наведених варіантів правильно ініціалізує масив data значеннями {1, 2, 3, 4, 5}?
int data = {1, 2, 3, 4, 5};
int data[5] = (1, 2, 3, 4, 5);
int data[5] = [1, 2, 3, 4, 5];
int data; {1, 2, 3, 4, 5};
int data[] = {1, 2, 3, 4, 5};
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!