Search:

Type: Posts; User: Taverlisk

Search: Search took 0.00 seconds.

  1. Try using recording the choice in a string, then...

    Try using recording the choice in a string, then check for the length of the string as an error. that way it will detect when more then one character has been entered.
  2. Thread: Why C?

    by Taverlisk
    Replies
    32
    Views
    4,629

    With all the extra features of C++, doesnt it...

    With all the extra features of C++, doesnt it mean it will come with lots of extra baggage making programs larger and slower?
  3. Replies
    4
    Views
    3,239

    I have altered your collect function, you should...

    I have altered your collect function, you should find the nodes are deleted correctly now




    void collect( struct node *head ) {
    struct node *current = head;
    struct node *p;
  4. Replies
    7
    Views
    1,340

    It seems to me your trying to pass data into a...

    It seems to me your trying to pass data into a structure definition. You must declare an instance of the structure first.

    Try this :

    structure definition

    struct information {

    int...
Results 1 to 4 of 4