Created
July 24, 2020 11:08
-
-
Save dev7060/754a8f991f5469dfbc7ba07645d1e2e7 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
//by github.com/dev7060 | |
//all 10 digits combos | |
#include <stdio.h> | |
int main(int argc, char **argv){ | |
unsigned long long int num = 1000000000; | |
FILE *fp = fopen("file.txt", "w"); | |
while(num<=9999999999){ | |
printf("%llu\n", num); | |
fprintf(fp, "%llu\n", num); | |
num++; | |
} | |
system("pause"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment