/* Program To Print The System Date
#include<conio.h>
#include<stdio.h>
#include<dos.h>
int main()
{
struct date d;
getdate(&d);
printf(“Current system date –> %d / %d / %d”, d.da_day, d.da_mon, d.da_year);
getch();
return 0;
}
OUTPUT:
Current system date –> 8/10/2013
Latest posts by Mohit Arora (see all)
- MongoDB Operators Tutorial – What are Different Operators Available? - October 5, 2019
- MongoDB Projection Tutorial : Return Specific Fields From Query - March 9, 2019
- MongoDB Index Tutorial – Create Index & MongoDB Index Types - July 6, 2018