mirror of
https://github.com/RaySollium99/XPKeygen.git
synced 2025-09-03 22:07:45 -04:00
13 lines
216 B
C
13 lines
216 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
int main()
|
|
{
|
|
int numero = 1;
|
|
char cmd[300];
|
|
while (numero < 1001){
|
|
sprintf(cmd, "./server2003 > %d.txt", numero, numero);
|
|
system(cmd);
|
|
numero=numero+1;
|
|
}
|
|
}
|