Skip to content

Instantly share code, notes, and snippets.

@whyakari
Last active May 5, 2024 18:10
Show Gist options
  • Save whyakari/ecf9686abd8dc14380e5f7f4d262e91b to your computer and use it in GitHub Desktop.
Save whyakari/ecf9686abd8dc14380e5f7f4d262e91b to your computer and use it in GitHub Desktop.
test
#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