Thread
:
error in operator overloading
View Single Post
xpi0t0s
Mentor
6May2010,13:12
You have only defined one constructor: exforsys(int x,int y) which takes two arguments.
So you cannot use the syntax "exforsys e1;" to create an object, because this requires the constructor exforsys() -- no arguments -- to be defined.