Formats args according to specifications in fmt and writes the output to stdout.

Synopsis

Declared in <fmt/printf.h>

template<typename... T>
int
printf(
    string_view fmt,
    T const...&... args);

Description

Example:

fmt::printf("Elapsed time: %.2f seconds", 1.23);

Created with MrDocs