๐Ÿ“ฆ songquanpeng / cpp-interview

๐Ÿ“„ extern2.cpp ยท 6 lines
1
2
3
4
5
6// If we want to use const variable in another file, we should use extern!
const int x2 = 2;
// Like this.0
extern const int x3 = 3;
// For non-const variable, it's default extern.
int x1 = 1;