get time to complete code c
clock_t begin = clock();
/* here, do your time-consuming job */
clock_t end = clock();
double time_spent = (double)(end - begin) / CLOCKS_PER_SEC;
get time to complete code c
clock_t begin = clock();
/* here, do your time-consuming job */
clock_t end = clock();
double time_spent = (double)(end - begin) / CLOCKS_PER_SEC;
C time
/** A working clock of time and date
that using your own computer's
local time to run the clock
without setting the time and date
in the code itself. **/
//C libraries statement
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
//Programming the delay command
void delay(int secondsNumber)
{
int milliSecondsNumber = 1000 * secondsNumber;
clock_t startTime = clock();
while(clock() < startTime + milliSecondsNumber);
}
//Driver program
int main(void)
{
//Declaring the variable
char buff[100];
//Making the clock run forever
for(; ;)
{
//Seting the clock over your computer local time
time_t now = time(0);
strftime(buff, 100, " %H:%M.%S n %d/%m/%Y", localtime(&now));
//Cleaning the command line and printing the clock
system("cls");
printf("n %sn", buff);
//Seting a delay of one second between each print
delay(1);
}
}
///The code itself without the details:
#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 %sn", buff);
delay(1);
}
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us