Search:

Type: Posts; User: FYX193

Search: Search took 0.01 seconds.

  1. Replies
    3
    Views
    1,557

    Well, thanks for the input... I'll try to...

    Well, thanks for the input... I'll try to remember it for next time. I just opted for global variables in my situation to make things simple. I'll try what you said on my code to see if that fixes...
  2. Here's an update to my code with a few things...

    Here's an update to my code with a few things fixed... but it still gives me a Memory Execution Error.


    #include <stdio.h>
    #include <string.h>

    #define MAX 10
    #define MAXN 15

    int i;
  3. I am familiar with breaking code down into...

    I am familiar with breaking code down into smaller parts, Every thing else will compile and run fine except the " inputs" function, and I believe it has to do with what HAMMER said about allocating...
  4. I'm well i've done what you've explained, but I'm...

    I'm well i've done what you've explained, but I'm not quite sure what you mean by:

    >>char *name[MAXN][MAX]
    This is a 2-d array of pointers, no memory has been allocated for you to store actual...
  5. Replies
    3
    Views
    1,557

    How would you pass a 2d string array "Pointer"...

    How would you pass a 2d string array "Pointer" which contains a list of names to a function? What would be the syntax to Define the Array in the Main module/program, and then to Declare and to Call...
  6. Ok, Now I've compiled it and it says 0 errors, 0...

    Ok, Now I've compiled it and it says 0 errors, 0 warnings; however, when I Execute the Program it gives me an Error Window displaying the following...

    ____________________________________________...
  7. Well I think I've solved it on my own... Trial...

    Well I think I've solved it on my own... Trial and Error method. :rolleyes:

    Here's my final code, which compiles with "Zero" errors & "Zero" warnings ... (I had to install VS6.0 & SP5 on my work...
  8. I'm not sure, but is this the problem (I'm not...

    I'm not sure, but is this the problem (I'm not near a computer that has a C programming compiler):


    Code was modified and updated below...
  9. Please Help me with debugging "Arrays & Functions" in code...

    I'm having trouble with setting up the Functions for my program. I have created the program without the use of Functions and it works perfect. However, when I added the functions it will either...
Results 1 to 9 of 9