Anyone interested in checking my calcultor

It is an f(x) area under the curve calculator and I am receiving an error message about float f(x) before I return something such as return x^2; before ending the program.

Please message me and I would be happy to send it to you, Thanks.
^ is the bitwise XOR operator. If you want to compute x2 you can use x * x or std::pow(x, 2).
Last edited on
Topic archived. No new replies allowed.