- /* C++20 std::format demo, with printf()/l10n-style argument order */
- #include <format>
- #include <iostream>
- #include <string>
- #include <string_view>
- int main(int ac, char *av[])
- {
- (void)ac;
- (void)av;
- std::cout << std::format("{2:} {1:} {0:}", "789", "456", "123") << std::endl;
- return EXIT_SUCCESS;
- }
C++20 std::format demo, with printf()/l10n-style argument order
Posted by Anonymous on Wed 20th Nov 2024 15:02
raw | new post
Submit a correction or amendment below (click here to make a fresh posting)
After submitting an amendment, you'll be able to view the differences between the old and new posts easily.