int snprintf(char* out, size_t len, const char* fmt, ...);
Writes a formatted string with format fmt to the string out, with maximum length len. See the format specifier reference for the supported format specifiers.
int snprintf(char* out, size_t len, const char* fmt, ...);
Writes a formatted string with format fmt to the string out, with maximum length len. See the format specifier reference for the supported format specifiers.