How do you type something on the same line of text in C [closed]

From your tags, I’m guessing you’re using printf(). Simply leave out the “\n” character, which means “newline.”.

In other words.

printf("> "); printf("text\n");

This will print:

> text

Leave a Comment