My homework question is : set up a for loop to print values from n down to 1 with at most 5 values per line.
I am honestly confused with for loops and I don't know where to start.
Skip to the for loop section. What you should basically think of the for loop is that it steps through anything in linear fashion. In other words, let's say you have to walk a certain distance to the supermarket down a road.
for( starting location is 0; distance to destination isn't reached yet; take a step forward )