will 'printf' always do its job? [closed]
- by gcc
printf("/something else/"); //without using \n in printf
I know printf() uses a buffer which prints whatever it contains when, in the buffer, "\n" is seen by the buffer. So when we forget to use "\n" in printf ,rarely,buffer will not be emptied.Therefore,printf wont do its job. Am I wrong?