Answers for "format string cpp"

C++
0

format string cpp

#include <iostream>
#include <format>
 
int main() {
    std::cout << std::format("Hello {}!\n", "world");
}
Posted by: Guest on February-02-2021

Browse Popular Code Answers by Language