Computer Science, asked by rekhadixit2620, 1 year ago

Clnguage code for printing a digitl time inhours minutes and sec format

Answers

Answered by surajithere
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