Search:

Type: Posts; User: rrreeefff

Search: Search took 0.00 seconds.

  1. Replies
    15
    Views
    5,306

    i am asking because (26) : error C2660: 'quad_1'...

    i am asking because (26) : error C2660: 'quad_1' : function does not take 3 arguments
    quad_2' : function does not take 3 arguments
  2. Replies
    15
    Views
    5,306

    what about quad2?

    what about quad2?
  3. Replies
    15
    Views
    5,306

    where would I put that in the function prototype?

    where would I put that in the function prototype?
  4. Replies
    15
    Views
    5,306

    yes, I need a place where results are stored!

    yes, I need a place where results are stored!
  5. Replies
    15
    Views
    5,306

    yes, sorry I forgot to put my question. I do not...

    yes, sorry I forgot to put my question. I do not think my pointers are correct because I need an output and it just seems like a function
  6. Replies
    15
    Views
    5,306

    Quadratic Using pointers

    Hello!

    I am working on a program that calculates the quadratic formula using pointers. Here is as far as I have gotten:



    #include "stdafx.h"
    #include "stdio.h"
    #include "math.h"
  7. Replies
    2
    Views
    2,437

    computing the GCD non-recursively

    Hello,

    I am working on this program that needs to compute the GCD non-recursively the programs has no errors but when it says result is not initlized because of this it aborts.

    #include...
  8. Here is the code I am trying to compute for a...

    Here is the code I am trying to compute for a non- recursive function now!
    #include "stdafx.h"
    #include "stdio.h"

    double mypower(float a, int n); // function prototype//


    int main (void)...
  9. Thank you all for your help! Now, what can I do...

    Thank you all for your help! Now, what can I do to turn this into a non-recursive function.
  10. The issue is when you run the program.

    The problem is that the program does not seem to have the correct output. I attached a screenshot to explain what I mean!

    Thanks!
  11. Help with a recursive function that computes a to the n

    Hello!

    I have been working on this for several days now and the program has no errors but it does not calculate. Here's the code:


    #include "stdafx.h"
    #include "stdio.h"

    float power(float...
Results 1 to 11 of 11