what is the meaning of this error message?

invalid operands of types 'double' and 'double [10]' to binary 'operator+'
It means you tried to add an object of type double to an object of type double[10] (i.e. you tried to add a single number to an array of ten numbers).
Topic archived. No new replies allowed.