Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in kernighan-and-ritchie

The C Programming Language (K&R) exercise 2-8: Rotate a number to the right. Is this OK?

How come \b is not recognized from ex. 1-10 in K&R?

c kernighan-and-ritchie

K&R C handling the octals

Return value from writing an unused parameter when falling off the end of a non-void function

Standard libraries included multiple times over several files?

Why is a function declared near the top of a source file?

c kernighan-and-ritchie

Is there an error in the example code in chapter 1.9 in the classic book "The C Programming Language"?

Clarification in getop()

c kernighan-and-ritchie

K and R exercise 1-24

recursive printf of binary tree elements

K & R malloc code doesn't make sense?

Does this small C program satisfy the K&R exercise?

c kernighan-and-ritchie

When left shift isn't the same as multiply by 2

getop() function K&R book p 78

c kernighan-and-ritchie

Clarification in Section 5.10 of K&R 2

c kernighan-and-ritchie

Confusing line in K&R 5.11 function pointers C

Unsure about correctness of a sentence from K&R - pointer arithmetic | Freeing procedure

Difference between struct S { int align; }; (name after struct keyword) and struct { int align; } S; (name after the struct definition)

K&R: array of character pointers

The validity of casting in the 'function pointer' version of K&R's qsort