Wednesday 25 May 2016

how to print current date by using turbo c++


#off_topic but it little bit interesting ;so enjoy it!
program to print current date.

note - only for turbo c users

#include <stdio.h>
#include <conio.h>
#include <dos.h>
int main()
{
struct date d ;
getdate (& d) ;
printf ("Current system date is %d/%d/%d" ,d. da_day , d. da_mon ,d. da_year);
getch() ;
return 0;
}

No comments:

Post a Comment