12 lines
183 B
C++
12 lines
183 B
C++
#include<iostream>
|
|
/**
|
|
* by 光城
|
|
* compile: g++ -o file const_file2.cpp const_file1.cpp
|
|
* execute: ./file
|
|
*/
|
|
extern const int ext;
|
|
int main(){
|
|
|
|
std::cout<<ext<<std::endl;
|
|
}
|