CPlusPlusThings/basic_content/const/extern_const/file2.cpp
Light-City 8edbbbc5a2 update
2019-11-05 16:56:07 +08:00

12 lines
170 B
C++

#include<iostream>
/**
* by 光城
* compile: g++ -o file file2.cpp file1.cpp
* execute: ./file
*/
extern int ext;
int main(){
std::cout<<(ext+10)<<std::endl;
}