Search:

Type: Posts; User: Sereby

Page 1 of 2 1 2

Search: Search took 0.00 seconds.

  1. Replies
    4
    Views
    4,240

    Thanks, SO.

    Thanks, SO.
  2. Replies
    4
    Views
    4,240

    Source Code Analysis Tool?

    I am invovled in a project where I need to analyze C code that was written a couple of years ago by another programmer. Most of it is self-explanatory. However, it appears that some of the routines...
  3. Replies
    8
    Views
    2,406

    OK, I got you - I'm really just starting out with...

    OK, I got you - I'm really just starting out with binary, so I just wanted to see those zeroes to help mark the bits in my head.
  4. Replies
    8
    Views
    2,406

    One stupid question - I seem to be unable to...

    One stupid question - I seem to be unable to enter binary numbers that contain more than one 0 in the msb's (like 00000001), although something like 10000000 is displayed as expected. Is there a way...
  5. Replies
    8
    Views
    2,406

    Funny, good ol' Windows Calculator, huh? OK,...

    Funny, good ol' Windows Calculator, huh? OK, thanks!
  6. Replies
    8
    Views
    2,406

    Good programmer's calculator?

    Yes, I can Google a bazillion of these, but I just wanted to see if anyone had recommendations for a good Win calculator that's geared specifically towards programmers to deftly handle bin, dec, hex...
  7. Replies
    3
    Views
    5,160

    Oh, very helpful (re: compliments) - thanks!

    Oh, very helpful (re: compliments) - thanks!
  8. Replies
    3
    Views
    5,160

    Negative int's in Hex?

    If the range of an int is -32768 to 32767, then what is this range in hex? Is it possible to represent negative values in hex?
  9. Replies
    2
    Views
    1,904

    Ah, thank you, Salem.

    Ah, thank you, Salem.
  10. Replies
    2
    Views
    1,904

    Crimson Editor and Visual C++

    I'm curious to see if there's a way to compile C code written in Crimson Editor using the Visual C++ 6 compiler. I tried to adapt the editor's instructions for using the Borland compiler, but it...
  11. Replies
    7
    Views
    2,198

    Ahhh, relief...

    Ahhh, relief...
  12. Replies
    7
    Views
    2,198

    Ahhh, wise advice. The book was purchased for me,...

    Ahhh, wise advice. The book was purchased for me, and I'm required to use it.

    So...I'll stick with int main(void) according to the FAQ.
  13. Replies
    7
    Views
    2,198

    If I understand you correctly, the problem I have...

    If I understand you correctly, the problem I have is not with the logic, but with the fact that the sort function names are actually backwards? Well, that's what you get from a "teach Yourself C in...
  14. Replies
    7
    Views
    2,198

    Help understanding conditional operator

    /* Inputs a list of strings from the keyboard, sorts them */
    /* in ascending or descending order, then displays them */

    #include <stdio.h>
    #include <string.h>
    #include <process.h>
    #include...
  15. Replies
    5
    Views
    1,563

    OK, that's what I thought. Thanks.

    OK, that's what I thought. Thanks.
  16. Replies
    5
    Views
    1,563

    Linked lists dead?

    Here's a quote from The Stanford CS Ed Library (http://cslibrary.stanford.edu/105/):


    Is this accurate? If so, what's the alternative?
  17. Replies
    2
    Views
    893

    C Source Code Library?

    I Googled this and found many resources, but I'd like to ask Those Who Know:

    Where can I find a useful resource of C source code (especially for beginners)?

    Thanks!
  18. Replies
    4
    Views
    3,447

    OK, thanks.

    OK, thanks.
  19. Replies
    4
    Views
    3,447

    Passing structure to function

    The following code fragment comes from Schildt's 4th Edition Complete C Reference:


    /* Example of passing a structure pointer to a function */
    /* Extraneous code deleted */

    struct example {
    ...
  20. Replies
    6
    Views
    5,639

    OK, thanks!

    OK, thanks!
  21. Replies
    6
    Views
    5,639

    fgets() array size memory concern

    If I'm using fgets() for console input, yet I don't know how long the input will be, what would be the most appropriate value for the second parameter? Also, would specifying a very large buffer size...
  22. Replies
    3
    Views
    906

    Well, from the FAQ I can plainly see that gets()...

    Well, from the FAQ I can plainly see that gets() is bad, bad. The FAQ also suggests using fgets(), but I don't want to work with files right now. Would it be appropriate to use scanf() instead?
  23. Replies
    3
    Views
    906

    Question about string declaration

    I'm curious about something. I'm practicing working with strings. Below is a code snippet that I have a question about:


    char string1[], string2[];

    main()
    {
    puts("Enter text for string1:");...
  24. Replies
    21
    Views
    7,244

    OK, I see now. Thanks guys!

    OK, I see now. Thanks guys!
  25. Replies
    21
    Views
    7,244

    Hmmm, at this point in the book, "cast" is not...

    Hmmm, at this point in the book, "cast" is not covered. Could you please explain what it means?
Results 1 to 25 of 32
Page 1 of 2 1 2