Search:

Type: Posts; User: SuPaNooB

Search: Search took 0.01 seconds.

  1. Replies
    22
    Views
    2,139

    alright, i'll look into it then, for now imma fix...

    alright, i'll look into it then, for now imma fix and clean it up a bit, add more and etc......but thanks for the advice.
  2. Replies
    22
    Views
    2,139

    is mixing them really a pain? heh, well, i been...

    is mixing them really a pain? heh, well, i been trying to fix this with a friend for days and now that i got some "light", i feel better since the deadline for this project is tomorrow.

    am i...
  3. Replies
    22
    Views
    2,139

    yea i fixed that, i believe everything is working...

    yea i fixed that, i believe everything is working correctly now, all i have to do now is just make it look a lil nicer and add a few more printf statements, add some extra elements and im good to...
  4. Replies
    22
    Views
    2,139

    alright, i pretty much got it now, i believe i...

    alright, i pretty much got it now, i believe i got the right answer now, imma double check by using pen and paper =] .........looky here:



    #include <stdio.h>
    #include <stdlib.h>

    void...
  5. Replies
    22
    Views
    2,139

    here's a new one...changed a few things, doesnt...

    here's a new one...changed a few things, doesnt print out eqfinal at all....



    #include <stdio.h>
    #include <stdlib.h>

    void elements(float*,float*);
    int Finish();
    float equation(double p,...
  6. Replies
    22
    Views
    2,139

    what compiler r u using? im not getting none of...

    what compiler r u using? im not getting none of those errors, it compiles all the way without errors...??? im using dev-c++ from bloodshed.
  7. Replies
    22
    Views
    2,139

    this is what i have, can some1 correct it for me?...

    this is what i have, can some1 correct it for me? its not passing a and b correctly to the equation func....




    #include <stdio.h>
    #include <stdlib.h>

    void elements(float*,float*);
    float...
  8. Replies
    22
    Views
    2,139

    well, i somewhat understand what ur saying, but...

    well, i somewhat understand what ur saying, but can u give me some examples on how to user it properly then? as for boolean, i have never used that cmd b4, how can i use it?
  9. Replies
    22
    Views
    2,139

    ok ok, i got my program to work, i decided to...

    ok ok, i got my program to work, i decided to change a lot of stuff, but i ran into problems...here's my code so far:

    my first problem is that for some reason, once u run the program, it freezes...
  10. Replies
    22
    Views
    2,139

    well, the thing is...for my project, i must have...

    well, the thing is...for my project, i must have 4 functions including Main, so i wanted to create two other functions, one is equation and the other is the constants, and im trying to make it so...
  11. Replies
    22
    Views
    2,139

    arrays- two dimensional

    im working on a project on where i have to come up with Van der Waals equation and im having trouble with arrays....need help on how to call for the constants! i have no idea how to make it work...
  12. Replies
    3
    Views
    1,234

    well, i think i fixed it but its not giving me...

    well, i think i fixed it but its not giving me the answer correctly...for example if u put 32 and 12, the answer is supposed to be 4, but it gives it as 0

    but if u "return a" it happens to work...
  13. Replies
    3
    Views
    1,234

    NEED help with returning the GCD

    umm, i need help with this, i have no idea how to make it return the greatest common divisor, this code works without returning anything, but i need to make the code to RETURN it......i gotten...
  14. Replies
    2
    Views
    1,313

    listing twin prime numbers help!

    #include <stdio.h>
    #include <stdlib.h>

    int main()
    { int firstnum,secondnum;

    for(firstnum=1; firstnum<=499; firstnum++)
    {
    if(secondnum%firstnum)
    {
  15. Replies
    6
    Views
    3,767

    thank you dwks, your help was quite enlightening,...

    thank you dwks, your help was quite enlightening, taking my programming "c" class, once a day per week for three hours doesnt quite make it into getting what i need to learn, even though i do come up...
  16. Replies
    6
    Views
    3,767

    stars=sin(x*pi/20)*60; ...

    stars=sin(x*pi/20)*60;

    for(y=stars;y<=60;++y) /*for loop to print the stars*/
    fprintf(fptr,"*");
    fprintf(fptr,"\n"); /*go to new line...
  17. Replies
    6
    Views
    3,767

    well, im fiddling around with the code and i...

    well, im fiddling around with the code and i think im almost there, i just need to make it so that when it writes to a .txt file, it prints out an X and Y lines along with STARS that resemeble the...
  18. Replies
    6
    Views
    3,767

    need help with sin(x) and bar graph

    Instructions:
     You may use the template to organize your program.
     No input from user is required.
     x & y are float.
     The function sin(x) is in the math.h header file and requires radians as...
Results 1 to 18 of 18