You do not need to use any functions beyond the main function in this problem. Initialize an array of int with the values: 4, 6, 9, and 12. Write a for loop to add the values in the array and find their sum. Write a second loop to print the values from the array and their sum in the following format: 4 + 6 + 9 + 12 = 31
+4
Answers (1)
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “You do not need to use any functions beyond the main function in this problem. Initialize an array of int with the values: 4, 6, 9, and 12. ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Home » Computers & Technology » You do not need to use any functions beyond the main function in this problem. Initialize an array of int with the values: 4, 6, 9, and 12. Write a for loop to add the values in the array and find their sum.