You are not logged in.
Quoted from "Saiyaman"
Das mit dem Einrücken macht VC++ eigentlich ganz prima alleine. Warum er das nur wieder weggemacht hat. ???
MfG
Quoted from "Saiyaman"
Aber da teilt man den Source-Code auch auf Dateien auf.
MfG
![]() |
Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
#include <stdio.h> int main() { int a, b, c, d; FILE * file; file = fopen("ips.txt", "a"); for(a = 0; a < 256; a++) for(b = 0; b < 256; b++) for(c = 0; c < 256; c++) for(d = 0; d < 256; d++) fprintf(file, "%i.%i.%i.%i\n", a, b, c, d); fclose(file); return 0; } |
-