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

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
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);