When registered with our forums, feel free to send a "here I am" post here to differ human beings from SPAM bots.
#include <stdlib.h>void a(void);void b();int main(){ a(); b(); return 0;}void a(void){ _sleep(200); return;}void b(){ int i; for(i=1;i<10;i++) { a(); }}