โ Back to Arrays
Question 91
Print Array Size
Print Array Size
An array called nums has already been created for you with the values {10, 20, 30, 40, 50}.
Your task is to calculate and print how many elements are in the array.
In C++, you can find the number of elements in an array using the expression:
sizeof(nums) / sizeof(nums[0])
This works because sizeof(nums) gives the total size of the array in bytes, and sizeof(nums[0]) gives the size of one element. Dividing the two gives you the count of elements.
Expected output:
5Expected Output:
5
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.