C Program to Get the Current System Time
Submitted by Srikanth on Wednesday, 16 January 20082 Comments
This program reads the current system time and displays it in the form HH:MM:SS
#include <stdio.h>
#include <dos.h>
#include <dos.h>
int main(void)
{
struct time t;
gettime(&t);
printf(“The current time is: %2d:%02d:%02d\n”, t.ti_hour, t.ti_min, t.ti_sec);
return 0;
}
Related Posts
By using/following this site you agree to our Legal Disclaimer


hi
this program can’t be run on linux as you are using dos.h,
i want a program with same output with date (day month year separately).
awaiting your response,
bye.
program that prints the time is
void main()
{
int hr,min,sec;
for(hr=0;hr<24;hr++);
{
for(min=0;min<60;min++);
{
for(sec=0;sec<60;sec++);
{
sleep(1);
clrscr();
printf("%d%d%d",hr,min,sec);
}
}
}
}
here "sleep(1)" command maintain interval of 1 sec between two print statements.
Leave your response!
I am the author and founder of GoHacking. You can read more about me or get in touch with me on Google+ or contact page.
EMAIL SECURITY »
What to Do When Your Email Account is Hacked?
How to Recover Hacked Email Accounts?
It can be a real nightmare if someone hacks and takes control of your email account as it may contain confidential information like bank logins, credit card details and other sensitive data. …
HOW STUFFS WORK »
How Antivirus Software Works
Due to ever increasing threat from virus and other malicious programs, almost every computer today comes with a pre-installed antivirus software on it. In fact, an antivirus has become one of the most essential software package for every computer. Even though every one …
HOW-TO GUIDES »
How to Retrieve Clipboard History in Windows
Ever copied a code snippet or text from the web and forgot to paste it before you copied something else? Well, all of us will have an experience of something like this, where we want to …
INTERNET SECURITY »
Access Your Facebook Account with 3 Passwords
Did you know that you can login to your Facebook account using 3 different passwords? Seems interesting isn’t it? Yep! Unlike any other online account which has only one password to access, Facebook lets you …
NETWORK HACKS »
Access Your Facebook Account with 3 Passwords
Did you know that you can login to your Facebook account using 3 different passwords? Seems interesting isn’t it? Yep! Unlike any other online account which has only one password to access, Facebook lets you …
Categories