Search:

Type: Posts; User: scipitam

Search: Search took 0.01 seconds.

  1. Replies
    8
    Views
    1,746

    yeah, it 'tis a bit late.... well I changed the...

    yeah, it 'tis a bit late....
    well I changed the case sensitive items (can't believe I missed those) and I will work on the functions. Back to more reading! Thanks !! ;)
  2. Replies
    8
    Views
    1,746

    ok, just tried it again to double check myself...

    ok, just tried it again to double check myself and I now have 6 errors instead of 3...so, I am sure that is not the problem...
  3. Replies
    8
    Views
    1,746

    yeah, I already tried this and in numerous ways!...

    yeah, I already tried this and in numerous ways! lol
    tks!!
  4. Replies
    8
    Views
    1,746

    class definition Q

    I am trying to constuct a class that will represent an employee. I believe my declaration matches the definition of the constructor. Why am I getting the below errors? why would they be invalid...
  5. Thread: C++ Question

    by scipitam
    Replies
    16
    Views
    2,942

    Thanks for your help.. :)

    Thanks for your help.. :)
  6. Thread: C++ Question

    by scipitam
    Replies
    16
    Views
    2,942

    Why would I be getting the error "expected...

    Why would I be getting the error "expected primary-expression before '{' token" ?



    struct Date
    {
    int month;
    int day;
    int year;
    };
  7. Replies
    3
    Views
    794

    does this look a bit better? struct Info...

    does this look a bit better?



    struct Info
    {
    string name;
    string teleno;
    Info * next;
    };
  8. Thread: C++ Question

    by scipitam
    Replies
    16
    Views
    2,942

    ok, well let me just scrap that...I have to say,...

    ok, well let me just scrap that...I have to say, I am totally new to C++ and am really finding this overwhelming. I am trying to return the later of any 2 dates passed to a function named larger()
  9. Thread: C++ Question

    by scipitam
    Replies
    16
    Views
    2,942

    I was told to do this to find the "later" date...

    I was told to do this to find the "later" date that was input

    // what are you trying to do here?
    Date.year*10000
    Date.month*100
    Date.day
  10. Replies
    3
    Views
    794

    C++ code question

    I need to remove an existing structure from a linked list of structures and the argument passed to remove() should be the address of the structure preceding the record to be removed....is this a good...
  11. Thread: C++ Question

    by scipitam
    Replies
    16
    Views
    2,942

    going to just show you what I have so far... ...

    going to just show you what I have so far...

    struct
    {
    int month;
    int day;
    int year;
    } Date1, Date2;

    int larger(Date1[], Date2[]); //function name
  12. Thread: C++ Question

    by scipitam
    Replies
    16
    Views
    2,942

    C++ Question

    Can anyone give pointers on how to write a funtion that would return the later of any two dates passed to it?
Results 1 to 12 of 12