Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Choose ALL valid ways to create an array of 5 integers in C++.
int x{5};
auto x[] = {1, 2, 3, 4, 5};
int x[] = {5, 4, 3, 2, 1};
int* x(new int[5]);
x = int[5];
int* x[5];
int[5] x;
int x(5);
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!