Tuesday, 4 September 2018

TIME?

===========================================================================
                                CODING



//#include<all.h>
#include<dos.h>
#include<conio.h>
void main()
{

    textcolor(WHITE);
    clrscr();
    struct time t;
    int a,c,b,d;
    first();
    second();
    first();
    gettime(&t);
    c=t.ti_hour;
    a=t.ti_min;
    b=t.ti_sec;
    d=t.ti_hund;
    cprintf("%d:%d:%d:%d",c,a,b,d);
    getch();
}




===========================================================================

                                OUTPUT


No comments:

Post a Comment