Search:

Type: Posts; User: grifan526

Search: Search took 0.00 seconds.

  1. Replies
    1
    Views
    940

    A good compiler

    When I took a class to learn C programming I think one of my biggest problems was the compiler that the Professor made us use, just because it made it very difficult to debug code and contained no...
  2. Replies
    3
    Views
    902

    Thanks that fixed it

    Thanks that fixed it
  3. Replies
    3
    Views
    902

    Problem with structures and seg fault

    I have some code and I keep getting segfaults, I have found out here the error is happening and it happens when I am trying to assign values to a structure. I thought I had done it right but...
  4. Replies
    2
    Views
    4,544

    Seg fault problem

    When I run this program I get a seg fault when ever I run it and it happen on the last pass through for loop. I put in print statements at one point just to see where the errors were happening and it...
  5. Replies
    3
    Views
    982

    I could have sworn I had tried that but obviously...

    I could have sworn I had tried that but obviously not because it just worked.
    Thanks a bunch
  6. Replies
    3
    Views
    982

    Pointer problems with structures

    I am making a program that needs to make an array of linked list, but I keep getting an error that says dereferencing pointer to incomplete type at the point when I am trying to set value to temp. My...
  7. Replies
    2
    Views
    1,263

    Problem with pointers

    I must write a program that reads in a file of ints into an array and lets the user choose the array index he wants to see. I can read in the file but when assigning it to an array value I obviously...
  8. Replies
    5
    Views
    1,762

    ok, i thought I understood what you were saying...

    ok, i thought I understood what you were saying but I don't know how to fix it, with out causing more errors.
  9. Replies
    5
    Views
    1,762

    I was able to get rid of that error by having a...

    I was able to get rid of that error by having a different function call it after filling it, but now that has caused a different problem. the code I changed is:


    int main(int argc,char *argv[])...
  10. Replies
    5
    Views
    1,762

    help with structures

    I am working on a project using structures and when I compile it says " error: request for member `fName' in something not a structure or union" and it says the same thing for the different elements...
  11. Replies
    6
    Views
    1,138

    Thanks a lot guys my program is compiling now. I...

    Thanks a lot guys my program is compiling now. I can now get on to the bulk of the project. Thanks again.
  12. Replies
    6
    Views
    1,138

    Ok I changed my declaration to: void...

    Ok I changed my declaration to:


    void fillStruct(char *argv,STUDENT* sarr[]);

    and the function call in main to:


    fillStruct(argv,stud);
  13. Replies
    6
    Views
    1,138

    Don't know why I am getting a syntax error

    I am working on a project using structures and when I compile my program I get a syntax error, in main before char. My code so far is:


    #include <stdio.h>
    #include <stdbool.h>
    #define SIZE...
Results 1 to 13 of 13