12345678910
void wait(int seconds) { clock_t waiting; waiting=clock () +seconds* CLK_TCK; while (clock() <= waiting) { } }