use time function in c code example
Example: C time
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
void delay(int secondsNumber)
{
int milliSecondsNumber = 1000 * secondsNumber;
clock_t startTime = clock();
while(clock() < startTime + milliSecondsNumber);
}
int main(void)
{
char buff[100];
for(; ;)
{
time_t now = time(0);
strftime(buff, 100, " %H:%M.%S \n %d/%m/%Y", localtime(&now));
system("cls");
printf("\n %s\n", buff);
delay(1);
}
}
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
void delay(int numOfSec)
{
int numOfMilliSec = 1000 * numOfSec;
clock_t startTime = clock();
while(clock() < startTime + numOfMilliSec);
}
int main(void)
{
char buff[100];
for(; ;)
{
time_t now = time(0);
strftime(buff, 100, " %H:%M.%S \n %d/%m/%Y", localtime(&now));
system("cls");
printf("\n %s\n", buff);
delay(1);
}
}