Question
Which is the correct way to initialize an array with 3 values?
Select an option. Your answer will be checked instantly.
Correct Answer: A. int a[3] = {1, 2, 3};
Explanation:
The correct answer is int a[3] = {1, 2, 3};.
Leave a Reply