why in line 4 my compiler shows me this error "too few arguments to function `int add(int, int)???" here's my code:
#include <iostream>
using namespace std;
int add (int, int);
int main ()
{
cout << add ();
cin.get();
}
int add (int a=8, int b=9)
{
return (a+b);
}