6 lines
108 B
C++
6 lines
108 B
C++
|
int functionWithStaticVariable() {
|
||
|
static int StaticVariable = 0;
|
||
|
return StaticVariable;
|
||
|
}
|
||
|
|