Search:

Type: Posts; User: Nightmaresiege

Search: Search took 0.01 seconds.

  1. Replies
    9
    Views
    1,465

    The first solution is more along the lines of...

    The first solution is more along the lines of what I was looking for. Thank you.
  2. Replies
    9
    Views
    1,465

    entries[] is an array of telephones. Each element...

    entries[] is an array of telephones. Each element in the array contains a person's name + area code + telephone number. The idea is to nullify the data for a given element as you said but I'm not...
  3. Replies
    9
    Views
    1,465

    Ok... Seems solid, what about trying something...

    Ok... Seems solid, what about trying something along the lines of:


    bool deleteEntry (string nameToDelete)
    {
    for (int i = 0; i < numEntries; i++)
    {
    Telephone *b = NULL;
    ...
  4. Replies
    9
    Views
    1,465

    Array of Objects

    Hi,
    I was wondering if it is possible to delete an element from an array of objects. If so, can anyone give me a few pointers on how? I don't think using delete[] would work in this case?
  5. Replies
    3
    Views
    2,406

    Phone book

    I'm working on a small phone book program. When a new entry is added to the phone book old entries should reorder themselves in the array alphabetically. For example, if the array contains:
    Anna...
Results 1 to 5 of 5