6 lines
104 B
C++
6 lines
104 B
C++
int functionWithLocalConstant() {
|
|
const int localConstant = 0;
|
|
return localConstant;
|
|
}
|
|
|