//create by lucky
#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
void main()
{
int count();
clrscr();
printf("\n enter a value for time\n");
scanf("%d",& count);
while(count!=0)
{
printf("\n\n\t%d",count);
count--;
sleep(2);
}
printf("\n count down times has:\n);
getch();
}
0 Comments