반응형
#include <stdio.h>
#include <stdlib.h>
int main()
{
char a[41] = "tcping -n 1 www.yahoo.co.kr > test.txt";
int i;
for(i = 0; i < 10; i++)
{
a[28] = i+'0';
if(i == 0)
{
printf("=================================================\n");
}
if(i != 0)
{
printf("=================================================\n");
}
printf("%s", a);
system(a);
printf("=================================================\n");
}
return 0;
}
반응형