in reply to Re^3: sprintf and decimals
in thread sprintf and decimals

Interestingly, this is the implementation of POSIX::sprintf in perl 5.8.7:
sub sprintf { usage "sprintf(pattern,args)" if @_ == 0; CORE::sprintf(shift,@_); }

So I would say "yes" :-)