1// "error: too few arguments to function 'printDay'" means you're passing
2// the wrong number of argument to printDay when you call it here:
3printDay(input());
4// You're passing one argument but your declaration of printDay shows
5// that it takes 3 arguments:
6void printDay(int month, int day, int firstDay);