Hi,
I want to create a function with default arguments.

e.g.
void fun(int i=90,j=100)
{
}

void main()
{
fun();
fun(34);
fun(50,60);
}

but it is not working and the complaier tells me that I don't give enough arguments.

any idea?
rgrds megetron.