Add Files

This commit is contained in:
Pedro Loures 2023-04-08 14:47:59 -03:00 committed by GitHub
commit ea4689c791
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 738 additions and 0 deletions

13
autoxp.c Normal file
View file

@ -0,0 +1,13 @@
#include <stdio.h>
#include <stdlib.h>
int main()
{
int numero = 1;
char cmd[300];
while (numero < 1001){
sprintf(cmd, "./windowsxp > %d.txt", numero, numero);
system(cmd);
numero=numero+1;
}
}