Has anyone written a function like fortran() except for C/C++?



The subject says it all.  For what it's worth, it seems like it should
be easy (at least for C); the main changes are some function names and
replacing things like x^y by pow((double)(x), (double)(y))
instead of (x)**(y).

David