Hi! I want to solve the following problem.
h[x_] := Module[{p, c}, {p, c} /. Last[NSolve[{e[x] == 0, f[x] == 0}, {p, c}]]]
where e and f are nonlinear equations for p and c.
When I input h[1], the output shows {p$150234, c$150234} .
Is there any mistake in the above usage of Module?