August can start on any weekday or any weekend day, so there is no single answer to the question without specifying a particular year.
It was a Monday.
One way to determine the day of week based on the date is to use Zeller's congruence. For the Gregorian calendar... int dayofweek (int month, int day, int year) { int weekday; if (month < 3) month += 12; weekday = day; weekday += int ((month + 1) * 26 / 10); weekday += year; weekday += int (year / 4); weekday += 6 * int (year / 100); weekday += int (year / 400); weekday %= 7; return weekday; /* 0 = Sunday, ..., 6 = Saturday */ }
in August ,on the 29th
monday
It was a Monday.
It was a Friday.
Monday
August 13 1985 was a Tuesday.
10th August 1995 was a Thursday.
august
September and December of the same year have the same calendar except that September has 30 days and December has 31. The last 31-day month before December of a regular year that has the same date to weekday relationships is July of the previous year. The last 31-day month before December of a leap year that has the same date to weekday relationships is October of the previous year. The first 31-day month after December of the year before a leap year with the same date to weekday relationships is the following March. The first 31-day month after December of the second year before a leap year with the same date to weekday relationships is August of the leap year. The first 31-day month after December of a leap year or the year after a leap year with the same date to weekday relationships is March of the second year after.
August.