Answers for "const in c++ is same as globle in python"

C++
0

const in c++ is same as globle in python

// global_constants.cpp
// LNK2019 expected
void test(void);
const int lnktest1 = 0;

int main() {
   test();
}
Posted by: Guest on February-22-2021

Browse Popular Code Answers by Language