Last active
May 5, 2024 18:10
-
-
Save whyakari/ecf9686abd8dc14380e5f7f4d262e91b to your computer and use it in GitHub Desktop.
test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
int main() { | |
printf("Hello, world!\n"); | |
for (size_t i = 1; i <= 10000000; i++) { | |
printf("%ld\n", i); | |
} | |
for (size_t i = 1; i <= 20000000; i++) { | |
printf("%ld\n", i); | |
} | |
for (size_t i = 1; i <= 30000000; i++) { | |
printf("%ld\n", i); | |
} | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment