too few arguments to function in c

Solutions on MaxInterview for too few arguments to function in c by the best coders in the world

showing results for - "too few arguments to function in c"
Giulia
24 Nov 2017
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);