Write a C Programm to print date and time
/**************************************************************/
/*Programmed by : Vivek Patel**********************************/
/*For Bugs Free feel to contact********************************/
/*Website : www.vivekpatel.cjb.net*****************************/
/*Email : vivek_patel9@rediffmail.com**************************/
/**************************************************************/
#include
#include
void main(){
time_t t;
time(&t);
printf("Today's date and time : %s",ctime(&t));
}