Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I know you can print with printf() and puts(). I can also see that printf() allows you to interpolate variables and do formatting.

Is puts() merely a primitive version of printf(). Should it be used for every possible printf() without string interpolation?

share|improve this question
Is this homework? – Clutch Mar 16 '10 at 20:09
Nope, just learning in my own time. I'm a full time web dev. – alex Mar 16 '10 at 23:05
3  
Just a note on using printf instead of puts: never, ever do a printf(variable) to print a string. Use puts(variable) or printf("%s', variable). There's a security risk in using a variable format string: if the variable can be written by an attacker they can attack the program by using format strings. – Zan Lynx Dec 1 '12 at 9:05

7 Answers

up vote 15 down vote accepted

puts is simpler than printf but be aware that the former automatically appends a newline. If that's not what you want, you can fputs your string to stdout or use printf.

share|improve this answer
1  
+1 Thanks, the newline thing is good to know! – alex Mar 16 '10 at 13:11

puts() vs printf() - C/C++ Answers

share|improve this answer
Your welcome, and yeah the layout of the form is not that great looking, but I figured it had a few different responses to the question and wouldn't hurt. – Anthony Forloney Mar 16 '10 at 13:26
Whilst this may theoretically answer the question, we would like you to include the essential parts of the linked article in your answer, and provide the link for reference. Failing to do that leaves the answer at risk from link rot. – Kev Oct 20 '12 at 13:09

Besides formatting, puts returns a nonnegative integer if successful or EOF if unsuccessful; while printf returns the number of characters printed (not including the trailing null).

share|improve this answer

Right, printf could be thought of as a more powerful version of puts. printf provides the ability to format variables for output using format specifiers such as %s, %d, %lf, etc...

share|improve this answer
int puts(const char *s);

puts() writes the string s and a trailing newline to stdout.

int printf(const char *format, ...);

The function printf() writes write output to stdout, under the control of a format string that specifies how subsequent arguments are converted for output.

I'll use this opportunity to ask you to read the documentation.

share|improve this answer

In my experience, printf() hauls in more code than puts() regardless of the format string.

If I don't need the formatting, I don't use printf. However, fwrite to stdout works a lot faster than puts.

static const char my_text[] = "Using fwrite.\n";
fwrite(my_text, 1, sizeof(my_text) - sizeof('\0'), stdout);
share|improve this answer
"fwrite to stdout works a lot faster than puts." - What could possibly be the reason? – Antony Hatchkins Mar 15 at 13:08

the printf() function is used to print both strings and variables to the screen while the puts() function only permits you to print a string only to your screen.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.