C Language Q & A #3
What is the purpose of the blank space between the question mark and double quotes n the following statement ?
Puts(“What is your name?”);
It does not accomplish anything, in terms of formatting on the screen, since the puts() statement has a built-in “new line”, which causes the cursor to jump down to the next line anyway. So you do not really see the blank space on the screen.