mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2025-09-11 13:06:43 -04:00
16 lines
127 B
C
16 lines
127 B
C
int a;
|
|
|
|
static int b;
|
|
|
|
static int g() {
|
|
return b;
|
|
}
|
|
|
|
int f() {
|
|
return a + g();
|
|
}
|
|
|
|
int main() {
|
|
return f();
|
|
}
|