#include<iostream.h>
#include<conio.h>
int add(int a, int b=0)
{
return a +b;
}
main()
{
int x=10, y=20, sum;/* Notice that we have passed only one parameter rather than two*/
sum=add(x);/*It would normally give you an error, but one of the parameters is optional now*/
cout<<sum;
}