6 lines
114 B
C++
6 lines
114 B
C++
int functionWithStaticConstant() {
|
|
static const int staticConstant = 0;
|
|
return staticConstant;
|
|
}
|
|
|