Choose Category
#include<stdio.h> #include<time.h> #include<conio.h> void main() { time_t current; time(¤t); clrscr(); printf("Today's date and time : %s",ctime(¤t)); getch(); }