mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-04 18:56:10 +00:00
8 lines
110 B
C
8 lines
110 B
C
int main(void) {
|
|
int z = 0;
|
|
for (int i = 0; i < 1000000; i++) {
|
|
z += i;
|
|
}
|
|
return z % 256;
|
|
}
|