How to format a string using std::format in C++?
std::format("{0} {1}", arg1, arg2)
std::format("{1} {2}", arg1, arg2)
std::format("{} {}", arg1, arg2)
std::format("{0} {}", arg1, arg2)
This question is part of this quiz :
C++ Intermediate Skill Assessment Practice Test