Clnguage code for printing a digitl time inhours minutes and sec format
Answers
Answered by
1
#include<stdio.h>#include<time.h>void main(){time_t t;time (&t);printf("\nToday's date & time is %s",ctime(&t));}
surajithere:
Why don't you mark it as Brainliest?
Similar questions