У меня проблема с операндом lvalue при попытке назначить указатель на функцию. Я не знаю, где именно проблема, но я дам вам весь код, связанный с этой конкретной проблемой.
double *func(double); //initialization for a pointer to a function that both returns a double and requires a double
func = &xsquaredsinx; //trying to make the pointer point at a function that both returns a double and requires a double
func = &halfcircle;//others that are the same
func = &testfunction;
Любая помощь была бы замечательной.