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](https://1a-1791.com/video/s8/1/b/q/m/w/bqmwd.qR4e-small-Create-Your-Own-Digital-Clo.jpg)
Create Your Own Digital Clock In C Language
2 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...
-
3:03:44
The Why Files
3 days agoCOMPILATION: Pyramids, Mounds and Mountains
58.4K59 -
2:00:15
Badlands Media
1 day agoThe Liberty Den Ep. 131
108K26 -
2:05:26
TimcastIRL
10 hours agoTrump NUKES IRS, Mass Fed Layoffs, Democrats REVOLT Over 200k Layoffs w/Roma Nation | Timcast IRL
127K175 -
1:39:03
Roseanne Barr
14 hours ago $29.99 earnedAdam Carolla! | The Roseanne Barr Podcast #87
115K27 -
1:29:04
Glenn Greenwald
13 hours agoTrump, Vance & Musk Announce a Radically New Foreign Policy Framework; Prof. Norman Finkelstein on Gaza's Future, the Cease-Fire Deal & Fallout from the U.S./Israeli War | SYSTEM UPDATE #407
151K96 -
4:15:00
Nerdrotic
15 hours ago $49.21 earnedCaptain Falcon America REVIEW, Disney Ending DEI? Rings of Power RETURNS | Friday Night Tights #341
214K36 -
9:34:03
FusedAegisTV
23 hours agoMario Galaxy, Batman, Real Talk/Politics, & MORE - V-Day 💗 Friday Variety Stream!
60.2K1 -
1:10:49
Vigilant News Network
11 hours agoRFK Jr. Drops a Stunning Announcement | The Daily Dose
79.9K42 -
49:49
Candace Show Podcast
14 hours agoEXCLUSIVE: Blake & Ryan’s Desperate Legal Strategy Exposed! | Candace Ep 147
193K135 -
1:32:20
2 MIKES LIVE
12 hours ago2 MIKES LIVE #180 with guest Kyle Rittenhouse!
54.8K4