* This C program will print the current date */
#include<stdio.h>
#include<conio.h>
#include<dos.h>
void main()
{
clrscr();
struct date d;
getdate(&d);
printf("Current system date is %d/%d/%d",d.da_day, d.da_mon, d.da_year);
getch();
}
GoBuyKar Provide Programming Solutions.
If the answers is incorrect or not given, you can answer the above question in the comment box. If the answers is incorrect or not given, you can answer the above question in the comment box.