Search:

Type: Posts; User: fox

Search: Search took 0.01 seconds.

  1. Replies
    36
    Views
    8,294

    Poll: I think there are both good female & male...

    I think there are both good female & male programmers.
    There does seem to be more male programmers though.
    Considering that 2 out of the last 5 instructors I sat in on
    to critique were females &...
  2. Replies
    56
    Views
    8,499

    Poll: C++, Java, and what's that ugly work...Cobol :) ...

    C++, Java, and what's that ugly work...Cobol :)

    -fox
  3. Replies
    3
    Views
    1,948

    I know a lot of teachers will teach the use of ...

    I know a lot of teachers will teach the use of
    void main( ) and never introduce the students
    to int main( void ). What a shame. I think they
    believe it's for simplicity, but it's plain wrong....
  4. Thread: fflush(stdin)

    by fox
    Replies
    3
    Views
    1,749

    Gets will allow someone to overwrite memory you...

    Gets will allow someone to overwrite memory you have allotted. Try to use fgets instead. There are quite a few posts on this. Example:


    char this[15];
    fgets( this, sizeof( this ), stdin ); ...
  5. Thread: Lazy typists

    by fox
    Replies
    27
    Views
    5,050

    I'm glad someone finally did a post on this....

    I'm glad someone finally did a post on this. Sometimes it is easy to tell by the word and the mistake if it's just a typing error. If it's just a person's style, then I usually don't mind as long as...
  6. Thread: system pause

    by fox
    Replies
    17
    Views
    2,516

    If you are using the version of the compiler YOU...

    If you are using the version of the compiler YOU have listed in your signature...Dev c++ 4, then kbhit( ) works perfectly. Please be nice and APPRECIATIVE to those who are offering their help.

    -fox
  7. Thread: C Homework

    by fox
    Replies
    18
    Views
    2,512

    I only help do homework with an attempt....

    I only help do homework with an attempt. Sometimes a little effort will get you far...

    -fox
  8. Thread: system pause

    by fox
    Replies
    17
    Views
    2,516

    oops, I did not log in my last post. -fox

    oops, I did not log in my last post.

    -fox
  9. Thread: system pause

    by fox
    Replies
    17
    Views
    2,516

    How long do you want your pause to be? Post a...

    How long do you want your pause to be? Post a little code so we can see what you're trying to do & we'll help you. It will most likely not be me though as I need to run for now.

    -fox
  10. Thread: system pause

    by fox
    Replies
    17
    Views
    2,516

    There are several ways to do it. You could use a...

    There are several ways to do it. You could use a for loop, but it would be processor dependant. You could also write your own time function for your pause. It would then pause for however many...
Results 1 to 10 of 10