this code won't compile. it gives a linking error because i'm calling a function that doesn't exist but i thought with the default parameters i should be able to instead of creating a new function that does this:
1 2 3 4 5
point()
{
x=0;
y=0;
}
i've tried ano parameter constructor calling this(0,0) and that doesnt work either have to much java on the brain.