Search:

Type: Posts; User: anduril462

Search: Search took 0.03 seconds.

  1. Replies
    18
    Views
    14,511

    The shared memory is just a big chunk of memory...

    The shared memory is just a big chunk of memory both processes can write to, like a piece of paper shared between two people. Both people need to know what is on each line of the paper. You start...
  2. Replies
    18
    Views
    14,511

    Linked lists are great if: 1. You keep all data...

    Linked lists are great if:
    1. You keep all data in memory, nothing resides in a database or on disk (Pointers don't match up between different programs or different runs of the same program).
    2....
  3. Replies
    18
    Views
    14,511

    You should definitely avoid using 'i' as a global...

    You should definitely avoid using 'i' as a global variable, since it's such a commonly used variable for loops, etc. Call it something descriptive and possibly prefix it with a 'g' to signify...
  4. Replies
    18
    Views
    14,511

    Global Variables Are Bad...

    Global Variables Are Bad


    It would help immensely if you made all global variables local, unless absolutely necessary.

    address.c


    void delete()
    {
Results 1 to 4 of 4