COUNTING TO 100 MILLION TEST

This commit is contained in:
SpookyDervish
2025-09-07 13:38:16 +10:00
parent cf1ea42232
commit 47e3e503b8
10 changed files with 198 additions and 59 deletions

8
test.c
View File

@@ -1,5 +1,7 @@
#include <stdio.h>
int main() {
printf("Hello, World!\n");
return 0;
int lol = 0;
for (int i = 0; i != 100000000; i++) {
lol++;
}
return lol;
}