Search:

Type: Posts; User: donkeyass

Search: Search took 0.00 seconds.

  1. Thread: Inheritance

    by donkeyass
    Replies
    7
    Views
    1,246

    ya ive still to try and use visual studio. well...

    ya ive still to try and use visual studio. well thanks a lot for all your advice, it really helped me out.
  2. Thread: Inheritance

    by donkeyass
    Replies
    7
    Views
    1,246

    ooo, good advice about the temp thanks. i think i...

    ooo, good advice about the temp thanks. i think i got it now, seemed to be something with my ide. it was telling me that i had invalid classes and they couldnt be found even though they were there, i...
  3. Thread: Inheritance

    by donkeyass
    Replies
    7
    Views
    1,246

    ya i tried including it and not including it....

    ya i tried including it and not including it. this is what i have for the whole files...

    linkedList.h


    #ifndef linkedList_H
    #define linkedList_H

    #include<iostream>
    #include "linkedQueue.h"
  4. Thread: Inheritance

    by donkeyass
    Replies
    7
    Views
    1,246

    Inheritance

    what the hell? i didnt do anything wrong lol. so far as i can see...

    linkedList.h


    class linkedList:public linkedQueue
    {
    public:
    linkedList();
    ~linkedList();
  5. Replies
    8
    Views
    1,246

    ooooooooo wow, that would make a difference....

    ooooooooo wow, that would make a difference. thanks a lot
  6. Replies
    8
    Views
    1,246

    ya i suspected that (complete n00b if you couldnt...

    ya i suspected that (complete n00b if you couldnt tell already lol)


    #ifndef linkedQueue_H
    #define linkedQueue_H

    #include<iostream>

    using namespace std;
  7. Replies
    8
    Views
    1,246

    im trying to make a linked list that these...

    im trying to make a linked list that these functions can manipulate. so i have a list and addRear() adds to the rear, displayAll() shows everything in the list, etc.
  8. Replies
    8
    Views
    1,246

    struct Node { int elem; Node...

    struct Node
    {
    int elem;
    Node *next;
    };
    and all im trying to do is print the int at rear->elem, but when i do it says
  9. Replies
    8
    Views
    1,246

    Print pointers

    ok so i am trying to print an int that is in a point but it wont let me, this is what i have...


    void linkedQueue::addRear(el_t newNum)
    {
    Node *rear;
    Node *front;

    ...
Results 1 to 9 of 9