Search:

Type: Posts; User: fisheromen1031

Search: Search took 0.01 seconds.

  1. I appreciate y'all's additional comments. ...

    I appreciate y'all's additional comments.

    For some reason, every time I read that section of the book before I always thought he was referring to some sort of casting operation done by the user...
  2. changing internal representation of a struct library

    I have been reading Bruce Eckel's Thinking in C++ Volume 1. I can usually figure out what he is talking about, but in his discussion leading from C struct libraries into C++ objects, he has a part...
  3. Much obliged

    Thank you very much! I will make a point to look that up. A buddy of mine has a copy.

    Thanks again, all. :)

    Blessings,
    fisher
  4. OHHHHHHHHHHHHHHH (smacks forehead) Thanks y'all....

    OHHHHHHHHHHHHHHH (smacks forehead)
    Thanks y'all. I'm a bit embarrassed, but I understand now.
    I thought I was being clever and potentially saving myself some overhead for when very large...
  5. possible counter example

    I have made this work fine with the following overloaded operator:


    template<class T>
    matrix<T> matrix<T>::operator* (T n){
    matrix<T> new_m;
    new_m=*this;
    for (int i=0; i<array_length;...
  6. I am doing that on purpose. It seemed like the...

    I am doing that on purpose. It seemed like the best way for me to accomplish things.
  7. trouble returning an object by reference

    Hello all,
    Could anyone tell me why I am losing my object? and possibly how I could correct this problem?

    I am having alot of trouble with this function. I would like to return an object by...
  8. sounds like one has to clear the input buffer...

    sounds like one has to clear the input buffer manually for both fgets and scanf
  9. clearing buffer after reading string w/ scanf()

    Why do I have to clear the input buffer after reading a string with scanf()?
    Why do I have to do this to keep may console screen from disappearing:

    #include <stdio.h>

    int main()
    {
    char...
  10. Replies
    17
    Views
    2,906

    it would be easier to just put the initial...

    it would be easier to just put the initial gallons read in above the while loop and then again at the bottom of the loop before the close brace
    this would eliminate the need for break and for the...
  11. Replies
    5
    Views
    1,277

    what do you mean "low level format"? I was...

    what do you mean "low level format"?
    I was thinking that since most anti-virus programs have a quarintine feature that there must be some way to render a program benign to the system. but then...
  12. Replies
    5
    Views
    1,277

    Safe way to run programs?

    I'm not sure if this is a operating system question, system administrator question, or a programming question. :confused: Let me explain what I want to do. I want a way to set up a program where I...
  13. Replies
    46
    Views
    10,184

    Hi y'all, I'm new here. Hopefully I can get...

    Hi y'all,
    I'm new here. Hopefully I can get some free time to work on this one. I've got an idea brewing ;)

    God bless,
    fisher


    PS. does anybody know how to sign up for the file...
Results 1 to 13 of 13