Search:

Type: Posts; User: phats

Search: Search took 0.01 seconds.

  1. Replies
    12
    Views
    1,084

    you guys are quite correct, jebus this is killing...

    you guys are quite correct, jebus this is killing me. I feel like a total idiot, thanks a lot you guys.

    update: I just compiled with no errors, thanks again guys, damnit I should have seen this...
  2. Replies
    12
    Views
    1,084

    #include #include ...

    #include <iostream>
    #include <stdlib.h>
    #include <vector>
    #include <string>

    using namespace std;

    //------------------------------------------------------------------------------
    //Double...
  3. Replies
    12
    Views
    1,084

    I suppose I should add that I am using Dev-C++...

    I suppose I should add that I am using Dev-C++ version 4. I did update to the newer beta version but found the error messages were even less helpful than in this version so I switched back.
  4. Replies
    12
    Views
    1,084

    class DList { public: DList(); ...

    class DList
    {
    public:
    DList();
    ~DList();
    void pushHead(int val);
    void pushTail(int val);
    void popHead();
    void popTail();
    int at(int point);
  5. Replies
    12
    Views
    1,084

    alright then, one more quick question, I changed...

    alright then, one more quick question, I changed the function to look like this


    void BigInt::toBinary(DList list)
    {
    int temp;
    int size = list.size();
    for(int i=0, compare;i<size;i++)
    ...
  6. Replies
    12
    Views
    1,084

    oh crap. Thanks Good thing my first post...

    oh crap.

    Thanks

    Good thing my first post made me look smrt, I mean smart.
  7. Replies
    12
    Views
    1,084

    Need help with function calls

    Ok, so after about 2 hours of searching and beating my head against the wall I decided to just ask. I am having problem with a program I am trying to write, I have 2 classes, a double linked list...
Results 1 to 7 of 7