- Back to Home »
- dos.h »
- C programming code for gettime
Posted by : ANIMESH SHAW
Sunday, 2 October 2011
#include<stdio.h> #include<dos.h> main() { struct time t; gettime(&t); printf("Current system time is %d : %d : %d\n",t.ti_hour,t.ti_min,t.ti_sec); return 0; }

Post a Comment