-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCOUNTD.C
36 lines (32 loc) · 860 Bytes
/
COUNTD.C
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/**********************************************
Statement - Static Countdown
Programmer - Vineet Choudhary
Written For - https://developerinsider.co
**********************************************/
#include <graphics.h>
#include <dos.h>
#include <conio.h>
int main()
{
int gd = DETECT, gm, i;
char a[5];
initgraph( &gd, &gm, "C:\\TURBOC3\\BGI");
settextjustify( CENTER_TEXT, CENTER_TEXT );
settextstyle(DEFAULT_FONT,HORIZ_DIR,50);
setcolor(RED);
for (i = 30; i >=0; i--)
{
sprintf(a,"%d",i);
outtextxy(getmaxx()/2, getmaxy()/2, a);
delay(1000);
if ( i == 0 )
break;
cleardevice();
}
cleardevice();
settextstyle(SANS_SERIF_FONT,HORIZ_DIR,2);
outtextxy(300,300,"Project by https://developerinsider.co");
delay(5000);
closegraph();
return 0;
}