Search:

Type: Posts; User: skev21

Search: Search took 0.01 seconds.

  1. Replies
    2
    Views
    2,212

    Thank you very much, I've been staring at it for...

    Thank you very much, I've been staring at it for ages... :(

    edit: I've been asked to try overloading the > operator so I can compare 2 linkedList objects and use this to implement a sort() method...
  2. Replies
    2
    Views
    2,212

    Parse error before string constant?

    Hi I am incredibly new to C++ programming and am sure my code is an absolute mess:


    #include <iostream>
    #include <stdlib.h>
    struct listNode {
    int value;
    struct listNode *next;
    };
    typedef...
Results 1 to 2 of 2