Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

const in c++ is same as globle in python

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

int main() {
   test();
}
 
PREVIOUS NEXT
Tagged: #const #globle #python
ADD COMMENT
Topic
Name
5+5 =