Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: neeny
  • Content: Threads
  • Order by date
  1. neeny

    program

    Why won't the following program work? #include <iostream> #include <cmath> double GetDerivative(double (*F)(double x), double x, double y) { double dFdx = (F(x+y)-F(x-y))/(2*y); } void Integrate (double (*Fcn)(double x), double arrX[], double arrY[],double dblXmin, double dblXmax, int...
  2. neeny

    c++

    How do you read in a file using c++ from the internet. Can you give an example.

Part and Inventory Search

Back
Top