Write a for loop to print all NUM_VALS elements of array hourlyTemp. Separate elements with a comma and space. Ex: If hourlyTemp = {90, 92, 94, 95}, print:
90, 92, 94, 95
Note that the last element is not followed by a comma, space, or newline.
**I'm having trouble printing out that last element without a comma. How do I go about doing this? I'm not looking for an answer. But a hint would help. Also I'm very new at this. So nothing too advanced. Thanks for any help.