CJCoding With Joseph

Sum a Field Across an Array of Structs

An Item struct has an int field price. Read an integer N, then read N prices into an array of Item structs. Print the total of all prices in this exact format:

Total: [sum]

Expected Output:

Total: 60
Topics:
Structs
๐Ÿ“ฅ Auto-Input:
3\n10 20 30\n
This input is automatically fed to your program's stdin
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (p, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.