Search:

Type: Posts; User: jrdoran

Search: Search took 0.01 seconds.

  1. Replies
    4
    Views
    4,008

    Yes well by that the code would look like this. ...

    Yes well by that the code would look like this.


    struct Student
    {
    char* names;
    float pGrades;
    };
    typedef struct Student Student;
  2. Replies
    4
    Views
    4,008

    Malloc with structs.

    I have a problem where I need to take a number of students, and then enter their names and a grade for each. I have it all working except for the malloc. I'm also using structs.


    #define...
  3. Replies
    2
    Views
    1,552

    Counting Characters

    How do I write a program to count the number of characters in an external file. I have most of it down , this is what I have so far:


    {
    FILE* file;
    char fileName[MaxStringLength];...
Results 1 to 3 of 3