Get the current time(according to your system).

MosaicFuneral 0 Tallied Votes 167 Views Share

Two version that do exactly the same thing!

#include <stdio.h>
#include <time.h>

char *get_time1()
{
    time_t   current;
    time(&current);
    tm *local = localtime(&current);
    return(asctime(local));
}

char *get_time2()
{
    time_t   current;
    time(&current);
    return(ctime(&current));
}

int main()
{
    printf("%s%s", get_time1(), get_time2());

    getchar();
    return(0);
}