#include "stdio.h"
#include "dos.h"
#include "conio.h"
#include "stdlib.h"
#include "time.h"
int main(void)
{
time_t now;
time(&now);
while(1)
{
time(&now);
clrscr();
printf("%s", ctime(&now));
sleep(1);
if(kbhit())
{
break;
}
}
return 0;
}
No comments:
Post a Comment