Rabu, 04 Mei 2011

C Program to Get the Current System Date



This program will get or read the current system date from the system. It displays Year, Month and Day.
#include <dos.h>
#include <stdio.h>
int main(void)
{
struct date d;
getdate(&d);
printf(“The current year is: %d\n”, d.da_year);
printf(“The current day is: %d\n”, d.da_day);
printf(“The current month is: %d\n”, d.da_mon);
return 0;

0 komentar:

Posting Komentar

VISITORS

Flag Counter