Search:

Type: Posts; User: Crawdawg

Search: Search took 0.00 seconds.

  1. Replies
    3
    Views
    865

    my friend, thank you for the pointer on...

    my friend, thank you for the pointer on Clear().... you saved me from redesigning a vb interface at the last minute.
  2. Replies
    3
    Views
    865

    my appologies, i meant ifstream, and i think...

    my appologies, i meant ifstream, and i think seekg may be the answer, but i have got to go out, i will post my result for any who are interested.
  3. Replies
    3
    Views
    865

    istream question

    is there a way to set the istream back to the begining of the file?
  4. Replies
    5
    Views
    1,145

    a simple understanding is a ball... the class...

    a simple understanding is a ball... the class would say a ball is round, it has a color, a weight... the object would be that fould ball you caught at the red sox game, another object is the kick...
  5. Replies
    7
    Views
    6,824

    writing your own function to clear the array...

    writing your own function to clear the array would be rather simple as well....


    void clearCharBuff(char *buf)
    {
    for(int x=0;x<33;x++)
    {
    buf[x]='\0';
    }
    }
  6. Replies
    4
    Views
    1,924

    Making an operator (in your case the '=' sign)...

    Making an operator (in your case the '=' sign) work with classes requires you to write an overloaded operator. The same operator can be overloaded multiple times for the same class, as long as the...
  7. Replies
    7
    Views
    2,196

    My appologies all, i didnt realize giving someone...

    My appologies all, i didnt realize giving someone a nudge on a hw assignment was so taboo... i will refrain from such nudges in the future...

    ~Craw
  8. Thread: NULL Problem

    by Crawdawg
    Replies
    6
    Views
    1,140

    I appreciate both of your help, i got it going. ...

    I appreciate both of your help, i got it going.

    ~Craw
  9. Replies
    7
    Views
    2,196

    well im not gonna do your homework for you, but...

    well im not gonna do your homework for you, but here is the basic idea....


    void main()
    {
    int huge=0,large=0,medium=0,small=0,doofs=0;
    cin>>doofs;
    while(doofs>0)
    {
    ...
  10. Replies
    17
    Views
    4,474

    I own a good portion of the books listed above by...

    I own a good portion of the books listed above by members... but i always return to my Deitel&Deitel book for reference. Please note that does not make it the best book for newbies... try Learn C++...
  11. Thread: NULL Problem

    by Crawdawg
    Replies
    6
    Views
    1,140

    ???

    I feel a little silly... but how do i input the file as binary as opposed to ascii???
  12. Replies
    21
    Views
    2,077

    A general rule to keep in mind is that all true...

    A general rule to keep in mind is that all true number systems start from zero. You will save yourself many headaches by following this rule.
  13. Thread: NULL Problem

    by Crawdawg
    Replies
    6
    Views
    1,140

    NULL Problem

    I am writing a file encryption program for my senior project (don't worry we are encouraged to seek outside help). but i am having a problem that many files (such as .doc and .exe) use multiple null...
Results 1 to 13 of 14