snprintf() not the only way
Posted Feb 7, 2004 10:07 UTC (Sat) by
ThePythonicCow (subscriber, #11308)
In reply to:
snprintf() not the only way by iabervon
Parent article:
snprintf() confusion
Utterly impossible to size at compile time -- the length of what is
added to the buffer varies with runtime data. Something as simple
as snprintf(buf, 999, "%d", random());
could put 1 to 10 digits in buf.
(
Log in to post comments)