#include<time.h>
#include<stdio.h>
#include<conio.h>
void main()
{
time_t t;
time(&t);
printf("Today's date and time :%s",ctime(&t));
getch();
}
#include<stdio.h>
#include<conio.h>
void main()
{
time_t t;
time(&t);
printf("Today's date and time :%s",ctime(&t));
getch();
}
No comments:
Post a Comment