Hang on... think about it, man. How is this different from printing the numbers from 0 to 99? Or from 0 to 9? It's just a simple loop. Ok, you have to use long long integers because the numbers are big, but it's just a 'for' loop, isn't it? Anyway. Let it not be said that I am not willing to help. #include <stdio.h> int main() { unsigned long long x; for (x = 0; x < 100000000000000ULL; x++) { printf("%lld\n", x); } return 0; } P.S. Hang on again... if you print that to a file you will end up with an average of 7 * 10^14 bytes and no hard disk is that big. And by the way, this takes ages to run. Why do you want to have such a list? Do you realise how long it is? P.P.S. If you don't even know what to do with the C code and you just want an executable... well, sorry chap, we are not a charity. We are a community of developers.
-+ HHexo +-