There are a few things about linking that I think are worthy of writing down after I studied linking from CSAPP-3e and some resources on the web. Linkage of const Global Variables const global variables in C++ have internal linkage (as declared static) unless they’re explicitly declared extern or inline (see C++17 inline variable), whereas …