Search:

Type: Posts; User: kevave

Search: Search took 0.00 seconds.

  1. Hey guys I got it!!!!! Thank you so much for your...

    Hey guys I got it!!!!! Thank you so much for your times! I am including a link below for everyone for lunch. FREE IHOP lunch.
  2. I did and I am getting this gcc: lm: No such...

    I did and I am getting this
    gcc: lm: No such file or directory
  3. Yes. I did do the math.h Could you look at my...

    Yes. I did do the math.h Could you look at my code and see if you can fix it??




    Descrition: Implement a menu managing array data such that the program asks multiple questions to the user...
  4. How can I "Have you told the linker to link with...

    How can I "Have you told the linker to link with the math library?" can you show me? using the code? I added the lm at the end and says no such as file exits
  5. Any Smart guy can figure this out? Should be simple problem.

    I am getting this error when want to compile.


    /tmp/ccmvPe9e.o: In function `stdData':
    problem.c:(.text+0x56b): undefined reference to `sqrt'
    collect2: ld returned 1 exit status
  6. It gives me this error gcc: lm: No such...

    It gives me this error


    gcc: lm: No such file or directory
  7. What do you mean? Can you copy my code and fix it...

    What do you mean? Can you copy my code and fix it and explain where is linker and sqrt error?
  8. Where to add the "-lm"??? this is my gcc -->>>...

    Where to add the "-lm"??? this is my gcc -->>> gcc problem.c -o problem.exe
  9. Problem with my code. C programming C++ Anyone can look at mine?

    This is my code and when I gcc it it won't let me and gives me these below errors.
    Code below the error I am getting trying to compile it


    /tmp/ccgjEovl.o: In function `stdData':...
  10. Problem with my code. C programming C++ Anyone can look at mine?

    This is my code and when I gcc it it won't let me and gives me these below errors.
    Code below the error I am getting trying to compile it

    This is the error I am getting


    tmp/ccS5besW.o: In...
  11. Why my code is not working? Anyone can look at my code plz?!

    I fixed it again and its still not working. ;(



    #include <stdio.h>
    #include <conio.h>
    #include <cstdlib>

    double simpson(double a, double b, int n);
    double fk(double x);
  12. Why my code is not working? Anyone can look at my code plz?!

    I am trying to use the Simpson's Method to calculate area under the curve using this function 2x^2+x but its not working?

    Can some one help me and fix the problem? Its using Simpson's Method and...
  13. well, I added the * between 2 and (x*x) and ran...

    well, I added the * between 2 and (x*x) and ran the program again. I am still not getting the answer. I entered 2 for a then 3 for b then 5 for n and I got the answer 14.68 but I have 15.something...
  14. Thats the only one? or I am wrong in the whole...

    Thats the only one? or I am wrong in the whole calculation?
  15. The Trapezoidal Rule for C programming C++ question.Look at my code plz

    I am trying to write a program in Putty that using Trapezoidal rule that reads a,b and N then calculates approx area for this function f(x)= 2x^2 +x

    I wrote the blow program but its wrong cuz I...
  16. Hi, I wrote that program but its wrong when I...

    Hi, I wrote that program but its wrong when I calculate it by hand. What else should I do? anything missing?


    /* trapezoid.c */
    include <stdio.h>
    include <math.h>
    float f(float);
    float a;...
  17. The Trapezoidal Rule for C programming C++ question. Anyone knows?

    I am new to C programming. Anyone has the code for this problem below or how to do it?

    I am trying to write a program in Putty that using Trapezoidal rule that reads a,b and N then calculates...
Results 1 to 17 of 20