Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 47 additions & 0 deletions C/DigitalClock.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
/*C program to design a digital clock.*/

#include <stdio.h>
#include <time.h> //for sleep() function
#include <unistd.h>
#include <stdlib.h>

int main()
{
int hour, minute, second;

hour=minute=second=0;

while(1)
{
//clear output screen
system("clear");

//print time in HH : MM : SS format
printf("%02d : %02d : %02d ",hour,minute,second);

//clear output buffer in gcc
fflush(stdout);

//increase second
second++;

//update hour, minute and second
if(second==60){
minute+=1;
second=0;
}
if(minute==60){
hour+=1;
minute=0;
}
if(hour==24){
hour=0;
minute=0;
second=0;
}

sleep(1); //wait till 1 second
}

return 0;
}