How do I write a C function that generates the calendar of a month, given the year and month
Write a C function that generates the calendar of a month, given the year and month and displays it on the screen with an asterisk around it. Eg: ************************************ * JULY 2022 * ************************************ * S * M * T * W * T * F * S * * * * * * * * * ************************************ * 1 2 * * * * 3 4 5 6 7 8 9 * * * * 10 11 12 13 14 15 16 * * * * 17 18 19 20 21 22 23 * * * * 24 25 26 27 28 29 30 * * * * 31 * * * ************************************