Final answer:
The character that allows the output cursor to go to the next line in programming is a) \\.
Step-by-step explanation:
The character that allows the output cursor to go to the next line in programming is a) \\. This character, known as the newline character, is used in programming languages like C, Java, and Python. It is used to create a new line in the output and move the cursor to the beginning of the next line. For example, if you print 'Hello' and then use the newline character '\\', followed by printing 'World', the output would be:
Hello
World