Search:

Type: Posts; User: Noah

Search: Search took 0.00 seconds.

  1. Replies
    4
    Views
    5,314

    Ok now I have working code (for the most part) ...

    Ok now I have working code (for the most part)


    double rectanglerule(double *ptr, double a, double b, double subint, int order)
    {
    double approxarea=0; //Approximated total area
    double i;...
  2. Replies
    4
    Views
    5,314

    Is there anyway I can make it so pow will accept...

    Is there anyway I can make it so pow will accept a char pointer?
    If you can't tell I am a beginner at C :(
  3. Replies
    4
    Views
    5,314

    Rectangular Approximation Program Help

    My program takes in a polynomial of any degree, and outputs it back the user. I want to be able to then pass this polynomial to a subfunction where it will be evaluated using the rectangular rule...
  4. Replies
    2
    Views
    8,296

    Thanks for your input. I have the p=ptr because...

    Thanks for your input. I have the p=ptr because I want to have two different pointers looking at the array. I am stumped on how I will output the array back to the user to show what they entered. ...
  5. Replies
    2
    Views
    8,296

    Need help with my program...

    Well for my class I have to write a program that .....

    Develop a program that will:
    a.Calculate the integral of a n-order polynomial using Simpson’s rule and rectangle rule, the orders will be...
  6. Replies
    1
    Views
    9,071

    Entering in an nth degree polynomial

    For my Engineering Class I have to write a program that will take in an nth degree polynomial. The degree will always be positive and an integer. Then I have to use Simpson's Rule and the...
Results 1 to 6 of 6