printf to a string code example
Example: C printf to string
// int sprintf(char *str, const char *format, ...);
char *printf_to_string()
{
char buffer[128] = {0} //Must be big enough
// writing printf output in buffer
sprintf(buffer, "some %s here...\n", "text");
// duplicate if needed
return strdup(buffer);
}