Skip to content

Instantly share code, notes, and snippets.

@AlexBaranowski
Created June 24, 2020 23:15
Show Gist options
  • Save AlexBaranowski/742bfee08c9b4b924157e984d8092624 to your computer and use it in GitHub Desktop.
Save AlexBaranowski/742bfee08c9b4b924157e984d8092624 to your computer and use it in GitHub Desktop.
#include<stdio.h>
int main(){
int i, j;
for (i=0; i < 100000;i++){
for (j=0; j < 100000;j++){
}
}
printf("Finish!");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment