What is the output of the following function if the array nums contains the values 1 2 3 4 5 int backwards (int nums[]) { for (x = 4; x >=0; x--) { cout << nums[x] << " "; } return 0; }
+1
Answers (1)
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “What is the output of the following function if the array nums contains the values 1 2 3 4 5 int backwards (int nums[]) { for (x = 4; x ...” 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 » What is the output of the following function if the array nums contains the values 1 2 3 4 5 int backwards (int nums[]) { for (x = 4; x >=0; x--) { cout << nums[x] << " "; } return 0; }