PRODUCT : Borland C++ NUMBER : 732 VERSION : 2.0 OS : DOS DATE : September 18, 1991 PAGE : 1/1 TITLE : How to Print the Current Time /************************************************************* This program illustrates how to print the current time. *************************************************************/ #include #include int main(void) { time_t t; time(&t); printf("Today's date and time: %s\n", ctime(&t)); return 0; }