#include #include #include /** * A stupid program that just runs for the number of seconds given * on the command line * Prints a ping every 10 seconds * **/ int main(int argc, char const *argv[]) { int tim = atoi(argv[1]); tim++; for (int i = 1; i < tim; i++) { if (0==(i%10)) { printf("%d\n", i); } sleep(1); } return 0; }