Search:

Type: Posts; User: Harbinger

Page 1 of 3 1 2 3

Search: Search took 0.01 seconds.

  1. Replies
    11
    Views
    2,035

    Watcom C compiler - Wikipedia, the free...

    Watcom C compiler - Wikipedia, the free encyclopedia
  2. Replies
    8
    Views
    2,786

    > whts the code for this program I'm sure your...

    > whts the code for this program
    I'm sure your effort so far will get a well deserved 'F'
  3. Replies
    7
    Views
    1,185

    > I am trying to convert a complex c program to...

    > I am trying to convert a complex c program to c++ to make it easier to maintain.
    rewrite it then.

    Unless you count a 'cast-fest' which results from your quick hack as being more maintainable.
    ...
  4. Thread: Threading

    by Harbinger
    Replies
    7
    Views
    980

    Geez, ever heard of a search feature? Or do...

    Geez, ever heard of a search feature?

    Or do you want a complete spoon-fed answer because you're too helpless to do any actual work yourself?

    Nevermind - don't bother answering unless you have...
  5. Replies
    6
    Views
    1,332

    It certainly isn't possible without knowing which...

    It certainly isn't possible without knowing which OS and compiler is being used...
  6. Replies
    5
    Views
    1,312

    > Hi, i have had problems using a perl...

    > Hi, i have had problems using a perl interpreter in C, and i wondered if anyone had any tips.
    No compiler mentioned, perhaps RTFM would help.

    > Basically, ActiveState's version gives me a whole...
  7. Replies
    2
    Views
    1,674

    Yes, you screwed up. Open the file in binary...

    Yes, you screwed up.
    Open the file in binary mode.
  8. Replies
    33
    Views
    3,483

    Perhaps you should learn some object oriented...

    Perhaps you should learn some object oriented design as well.

    Simply throwing a few unplanned classes into a program doesn't produce a well designed program which uses OOP to its best effect.

    >...
  9. Replies
    16
    Views
    3,861

    Write all the perms for 2, 3 and 4 symbols, and...

    Write all the perms for 2, 3 and 4 symbols, and observe the handy pattern they generate.

    If you can't manage perms by hand, forget about trying to write the code.
  10. Replies
    5
    Views
    1,312

    Ooh ooh - lets play a game of guessing which OS...

    Ooh ooh - lets play a game of guessing which OS and compiler you're using, then see if your choice of lib makes any sense whatsoever.

    Not to mention the psychic abilities needed to figure out what...
  11. Replies
    3
    Views
    3,600

    Maybe put -lwininet after the object files....

    Maybe put -lwininet after the object files....
  12. Replies
    4
    Views
    2,142

    void main gets(buffer) casting malloc.... ...

    void main
    gets(buffer)
    casting malloc....

    I'm gonna puke!!!!
  13. Replies
    9
    Views
    4,871

    > lab9.c:52:file does not end in a new line Gee,...

    > lab9.c:52:file does not end in a new line
    Gee, I wonder....

    D'ya think going to the end of the code, pressing return and saving it would help.....
  14. Replies
    20
    Views
    7,358

    Bored now..... int limit = sqrt ( fooo );...

    Bored now.....


    int limit = sqrt ( fooo );
    for (i = 0; i < limit ; i++ )

    If you can't get that into your code, give it up
  15. Replies
    3
    Views
    1,747

    If you open the file in text mode (on a windows...

    If you open the file in text mode (on a windows machine), then \r should be stripped when you read it, you'll only see \n and it will be added when you print a \n (\r\n appears in the file).
  16. Replies
    4
    Views
    1,198

    Yawn - another noob being taught by a lamer tutor...

    Yawn - another noob being taught by a lamer tutor who thinks teaching C is all about dumb tricks....
  17. Replies
    8
    Views
    3,677

    > Any reason for this? Ask them what this does ...

    > Any reason for this?
    Ask them what this does


    int main ( ) {
    char *buff;
    fflush(stdin);
    gets(buff);
    }
  18. Thread: Recursion

    by Harbinger
    Replies
    14
    Views
    1,894

    > void main() And 200+ posts - tsk

    > void main()
    And 200+ posts - tsk
  19. Replies
    6
    Views
    7,155

    > -lXss -lX11 -lgdk These go after .c files -...

    > -lXss -lX11 -lgdk
    These go after .c files - otherwise the linker doesn't see any unresolved symbols when it gets to the libraries, therefore it doesn't think the libraries are necessary.
  20. Replies
    20
    Views
    7,358

    Well try not calling sqrt() so many times - like...

    Well try not calling sqrt() so many times - like just ONCE before the loop, not every time within the loop.
  21. Replies
    5
    Views
    1,506

    "dynamic allocation" Showing results 1 to 25 of...

    "dynamic allocation" Showing results 1 to 25 of 369
    "reading files" Showing results 1 to 25 of 500
    Go figure....
  22. Replies
    20
    Views
    7,358

    Clicky Clicky, do some reading

    Clicky Clicky, do some reading
  23. Replies
    20
    Views
    7,358

    http://www.google.co.uk/search?q=Sieve+of+Eratosth...

    http://www.google.co.uk/search?q=Sieve+of+Eratosthenes
    Then refine the search by adding "source code"
  24. Replies
    7
    Views
    1,898

    > but I have never had any problems with it! ...

    > but I have never had any problems with it!
    Ever tried simply copying a file using that technique?

    Ever read the FAQ?
  25. Replies
    12
    Views
    2,275

    So I guess your prof is teaching you the compiler...

    So I guess your prof is teaching you the compiler rather than the language. Make of that what you will, but if you think learning stuff is hard, try unlearning a bunch of half-truths and compiler...
Results 1 to 25 of 75
Page 1 of 3 1 2 3