bgc icon indicating copy to clipboard operation
bgc copied to clipboard

Beej's Guide to C Programming source

Results 14 bgc issues
Sort by recently updated
recently updated
newest added

I've been mostly progressing through the textbook serially (i.e. chapter 1 then 2, then 3, etc.), and got pretty confused at the end of section 7.4. It was so bewildering...

Thank you for this guide! In section `21.1.2.1`, the code description says: > (Note this makes use of the non-standard POSIX function sleep() from —if you’re not on a Unix-like,...

In 41.1.1, "`inline` for Speed—Maybe", you write: > Another way is to declare the function as `extern inline`. This will attempt to inline in this file, but will also create...

Second occurrence of the field `char p_sign_posn` (with description `Determines the positive_sign position for negative values.`) should be `char n_sign_posn`. `char n_sign_posn` is not mentioned as a field in table...