Premium Only Content
This video is only available to Rumble Premium subscribers. Subscribe to
enjoy exclusive content and ad-free viewing.

Create Your Own Digital Clock In C Language
3 years ago
2
In this video we will learn about how to create a digital clock using c language
SOURCE CODE
#include <stdio.h>
#include <windows.h>
int main()
{
int h,m,s;
int d=1000;
// we add a delay of 1000 milliseconds and we will use it in the function sleep
printf("Set time : \n");
scanf("%d%d%d",&h,&m, &s);
if(h>12 || m>60 || s>60)
{
printf("ERROR ! \n");
exit(0);
}
while(1)
// this is an infinite loup and anything inside will repeat itself to infinity
{
s++;
if(s>59)
{
m++;
s=0;
}
if(m>59)
{
h++;
m=0;
}
if(h>12)
{
h=1;
}
printf("\n Clock :");
printf("\n d:d:d",h,m,s);
// this writes our time in this format 00:00:00
Sleep (d);
// the function sleep slows down the while loop and make it more like a real clock
system("cls");
// this clears the screen
}
}
Loading comments...
-
1:53:28
Man in America
12 hours agoLIVE: Assassin Arrested? Civil War? Are We Being Played?? | LET'S TALK
62.6K36 -
Badlands Media
9 hours agoOnlyLands Ep. 24
38.3K4 -
2:27:53
TheSaltyCracker
5 hours agoGot Him ReeEEStream 9-12-25
242K288 -
52:11
Sarah Westall
6 hours agoBread and Circus Keeps you Financially Ignorant – Its Better for the Elites w/ Chris Russo
47.8K3 -
LIVE
I_Came_With_Fire_Podcast
13 hours agoFriday Night Live Fire
463 watching -
1:20:39
Flyover Conservatives
15 hours agoFrom Demonic Deception to Divine Direction: Sid Roth’s Radical Encounter With God | FOC Show
40.9K1 -
DVR
Chrissie Mayr
3 hours agoChrissie Mayr Reactions to Charlie Kirk, Liberal Celebrations, and More
35.9K11 -
1:05:46
AlaskanBallistics
3 hours ago $0.79 earnedRemembering Charlie Kirk
38.2K6 -
1:23:27
Glenn Greenwald
6 hours agoNetanyahu’s Crude Exploitation of Charlie Kirk’s Death to Get the American Right Back into Line; Plus: Q&A With Glenn on Charlie Kirk's Assassination, Online Civil Discourse, and More | SYSTEM UPDATE #514
202K137 -
4:10:25
Nerdrotic
9 hours ago $1.04 earnedCulture Is VITAL! Streaming BUST, Warner Bros. Buyout | Friday Night Tights 371 with Vara Dark
213K27