Created
June 24, 2020 23:15
-
-
Save AlexBaranowski/742bfee08c9b4b924157e984d8092624 to your computer and use it in GitHub Desktop.
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(){ | |
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