Name: Anonymous 2014-07-22 13:29
Can be yours or not, I just want to see something good.
#include"stdio.h"
#include"conio.h"
#include"iostream.h"
void main(void){
int i;
while(i<10){
int i2;
printf_s("\rstarting");
while(i2<10){
putchar('.');
i2 = i2 + 1;
}
i = i + 1;
sleep(1);
}
printf_s("press any key...");
getch();
}