Get the current time(according to your system).

MosaicFuneral 0 Tallied Votes 166 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);
}
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.