(C PROGRAMMING ONLY) 5. Sum of My Winnings by CodeChum Admin I've joined a lot of programming competitions and since I've been learning programming in CodeChum, I won a lot of them!   But now, since I'm tired, I need your help to count all of my winnings. Can you help me please? I promise to share some of it with you.   Instructions: In the code editor, you are provided with an array which contains 100 elements. Your task is to compute and print the sum of all of the elements. Output Total = 100

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter9: Records (struct)
Section: Chapter Questions
Problem 12SA
icon
Related questions
Question

(C PROGRAMMING ONLY)

5. Sum of My Winnings
by CodeChum Admin

I've joined a lot of programming competitions and since I've been learning programming in CodeChum, I won a lot of them!

 

But now, since I'm tired, I need your help to count all of my winnings. Can you help me please? I promise to share some of it with you.

 

Instructions:

In the code editor, you are provided with an array which contains 100 elements.
Your task is to compute and print the sum of all of the elements.

Output

Total = 100

main.c
> + c
1 #include<stdio.h>
3 int main(void) {
int winnings[100]
4
{
1,3,2,4,5,7,6,8,9,11,
100,13,0,14,16,17,3,18,20,10,
12,8,15,14,5,17,19,18,1,9,5,
10,13,11,14,16,22,0,18, 20,3,
99,13,15,14,22,17,19,0,23,2,
12,13,15,22,16,17,56,18,44,99,
2,13,22,14,16,89,19,69,101,34,
12,22,15,14,78,17,69,18,2,33,
4,13,77,7,10,17,19,91,4,22,
12,98,15,14,15,17,19,18,7
};
7
8.
9.
10
11
12
13
14
15
16
17
// TODO: Compute and print the sum of all the winnings here
18
19
return 0;
20 }
Transcribed Image Text:main.c > + c 1 #include<stdio.h> 3 int main(void) { int winnings[100] 4 { 1,3,2,4,5,7,6,8,9,11, 100,13,0,14,16,17,3,18,20,10, 12,8,15,14,5,17,19,18,1,9,5, 10,13,11,14,16,22,0,18, 20,3, 99,13,15,14,22,17,19,0,23,2, 12,13,15,22,16,17,56,18,44,99, 2,13,22,14,16,89,19,69,101,34, 12,22,15,14,78,17,69,18,2,33, 4,13,77,7,10,17,19,91,4,22, 12,98,15,14,15,17,19,18,7 }; 7 8. 9. 10 11 12 13 14 15 16 17 // TODO: Compute and print the sum of all the winnings here 18 19 return 0; 20 }
Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Array
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr