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