heres my Code it works correctly for what i want to do, but i want to Delay The loop for 10 seconds each time so it say Sent To IP (delay 10 second) Sent To IP (delay 10 sec) and so on...
hope you can help
hope you can help
#include <stdio.h>
int main()
{
int x;
/* The loop goes while x < 10, and x increases by one every loop*/
for ( x = 0; x < 16; x++ ) {
printf("Sent Code To IP" "%d\n", x );
}
getchar();
}