/*using the asctime function*/ #include #include int main() { struct tm *ptr; time_t tm; tm = time(NULL); ptr = localtime(&tm); printf(asctime(ptr)); return 0; }