I would like the function to return an array of strings where each date is reprsented as "13/11" or any other format from where i can pull both the date and month.
Maybe it would look something like this:
char** get_dates_from_year_and_week(int year, int week) {
//Magic happens
return arr
}
get_dates_from_year_and_week(2021, 45);
//Would return ["08/11", "09/11", 10/11", "11/11", "12/11", "13/11", "14/11"];
How could this possible be obtained using c? Any library is welcome.