mirror of
https://github.com/libretro/cpp-cheat.git
synced 2025-04-14 01:00:25 +00:00
24 lines
247 B
C
24 lines
247 B
C
#include <stdio.h>
|
|
|
|
void a();
|
|
|
|
int i = 0;
|
|
static int si = 0;
|
|
|
|
void m() {
|
|
i++;
|
|
si++;
|
|
puts("m()");
|
|
printf("i = %d\n", i);
|
|
printf("si = %d\n", si);
|
|
puts("");
|
|
}
|
|
|
|
int main() {
|
|
m();
|
|
m();
|
|
a();
|
|
a();
|
|
return 0;
|
|
}
|