โ Back to Arrays
Question 92
Change an Element
Change an Element
An array called nums has already been created for you with the values {10, 20, 30, 40, 50}.
Your task is to change the value at index 2 to 99, and then print the new value at that position.
In C++, you can change an element in an array by assigning a new value to it using its index, like this:
nums[index] = newValue;
Expected output:
99Expected Output:
99
Topics:
Arrays
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.