00001 #include <conio.h> 00002 #include <unistd.h> 00003 00004 int main(int argc, char **argv) { 00005 cputs("hello"); 00006 sleep(1); 00007 cputs("world"); 00008 sleep(1); 00009 cls(); 00010 00011 return 0; 00012 }