puts() displays a string of text without all printf()'s formatting magic.puts() always displays the newline character at the end of its output. #include int main(){ puts("error."); return(0);} error.