Search:

Type: Posts; User: HOWY

Search: Search took 0.00 seconds.

  1. Replies
    1
    Views
    903

    a question re: Streams

    int fgetc(FILE *);
    int fputc(int c, FILE *);

    They are similar to getc() and putc() but not identical - why?
  2. Replies
    2
    Views
    1,233

    strtol(), strtod() ?

    Can somebody please tell me more about theses two functions...what they do, and how do you use them, for what...

    Thank you
    HOWY
  3. stderr quicky question - I GOT IT thank you so much

    I got it ...I just need to use 2>whateverfile
    and it will take care of it!!
    Thank you so much
  4. Replies
    1
    Views
    1,142

    stderr quicky question

    For example when I am directing a program's output to a file and then I look to that file I will be able to see the exact output that was redirected from stout to this file... Now if a program spits...
  5. Replies
    4
    Views
    1,757

    can somebody advise me on the "core dump" error

    I have a piece of code that successfully compiles, but when I test it on my driver file, I get a "Segmentation Fault"...and nothing happens... Half of the function is ok, but then teh other half is...
  6. Replies
    4
    Views
    1,757

    Segmentation fault ?!

    I have a piece of code that successfully compiles, but when I test it on my driver file, I get a "Segmentation Fault"...and nothing happens... Half of the function is ok, but then teh other half is...
  7. Replies
    2
    Views
    876

    Looking for a book...

    Does anybody know a nice ftp site with free online books (downloadable) for UNIX?
    I am looking for UNIX: For programmers and Users

    Thank you
    Howy
  8. Replies
    1
    Views
    2,113

    why isn't doing what I want it to do?

    Simple...Array of different words, Initial array size is 4. Upon reaching the limit, it shoudl dynamically expand. MY CODE ISN"T DOING THIS. Also, I am trying to qsort it after each addition...well...
  9. Replies
    2
    Views
    1,040

    Hammer - Thank you so much!!!

    Hammer - Thank you so much!!!
  10. Replies
    2
    Views
    1,166

    what's wrong in this code?

    I've put a code together, a simple one. It's supposed to search an array of pointers (I initialized it at the beginning).
    each word is defined as any sequence of alphanumeric characters only:...
  11. Thread: I wonder...

    by HOWY
    Replies
    2
    Views
    956

    I wonder...

    I need your help in my practice with C programming. I am new at it, and am trying to get bettaer at it since I really enjogy it a lot.
    How do I go along doing simple entering words in a adynamically...
  12. removing dupes out of an array - pls someone explain this to me..

    I am new to programming and to C programming itself....I was wondering how do I go about removing duplicate entries in an array, in most simplest code?
    for example:
    a[7] = {1,2,5,1,2,3,3}
    and I...
Results 1 to 12 of 13