Advertisement
Guest User

Untitled

a guest
Dec 14th, 2019
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. void printTimeInfo(time_t time){
  2. struct tm *x = localtime(&time);
  3. char* week[7] = {"Sun","Mon","Tue","Wed","Thu","Fri","Sat"};
  4. printf("%d %d %s",x->tm_sec,x->tm_mon+1,week[x->tm_wday]);
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement