sprintf

Return a formatted string.
     format - printf-style format string.
              %a - means address expression.
              floating point values are output only in one format
               regardless of the character specified (f, e, g, E, G)
              %p is not supported.
Thread-safe function.

string sprintf(string format, ...);

Last updated