This c program prints current system date. To print date we will use getdate function.
C programming code (Works in Turbo C only)
#include <stdio.h>
#include <conio.h>
#include <dos.h>
void main()
{
struct date d;
clrscr();
getdate(&d);
printf("Current system date is %d/%d/%d",d.da_day,d.da_mon,d.da_year);
getch();
}
This code works in Turbo C only because it supports dos.h header file.
No comments:
Post a Comment