Tagged Questions

0
votes
4answers
236 views

Can anyone see what is wrong with this (time related functions in C)

#include <stdio.h> #include <stdlib.h> #include <time.h> static struct tm createDate(unsigned day, unsigned mon, int year) { struct tm b = {0,0,0,day,mon-1,year-1900}; return ...