What I have done is basically laid out a 10x10 table filled with zeroes in every position. Now what I want to do is have the user input a line number, and then fill in the 10 columns with actual numbers. Is there a command in C that will let me move the cursor to the next line without printing a new line?

The idea I had was to have a loop run a number of times set by the line number. So say we choose line number 7. The loop would run 7 times, printing a "\n" every time, but this will create a blank line in between, I just want the cursor to move down one without printing a blank line.