int* p = &x;
printf("%p", p); // ok
std::cout << p; // ok
std::format("{}", p); // error
printf can format a pointer. iostream can format a pointer. std::format cannot 🧵👇
Our mission is to make the C++ programming language accessible and useful to anyone who wishes to learn and apply the language.

