C Program – Timer program

by Nideesh C on May 9, 2011 · 0 comments

in C Programming




//Downloaded From theonlinetutorials.com
#include "stdio.h"
#include "conio.h"
#include "dos.h"
int main()
{
int i;
char s[100];
clrscr();
for(i=30;i>=0;i--)
{
delay(1000);
printf("\n00:%2d",i);
}
printf("Timer finished");
getch();
return 0;
}



Not Satisfied ? Just search & get the result

Related Posts Plugin for WordPress, Blogger...
Be Sociable, Share!

Related posts:

  1. C Program – Display all type of pyramids
  2. Sample – Program to change the background colors on the screen.
  3. C Program – Implement the midpoint circle drawing algorithm
  4. C program to read A (MxN), find the transpose of a given matrix and output both the input matrix and the transposed matrix.
  5. C Program – Random Float number Generator

Leave a Comment

Previous post:

Next post: