summaryrefslogtreecommitdiffhomepage
path: root/c.html.markdown
diff options
context:
space:
mode:
authorBoris Verkhovskiy <boris.verk@gmail.com>2024-04-08 07:08:01 -0700
committerBoris Verkhovskiy <boris.verk@gmail.com>2024-04-08 07:08:01 -0700
commita2b4f54dc673935785807ab0ffeef120032adbab (patch)
tree79c6a2e0c4eae4f5f5a54b7e4d717d8c060c457b /c.html.markdown
parent216018a02e80fcc369c5c2786538593fa8fd199d (diff)
[c/*] remove suggestion to Google
Diffstat (limited to 'c.html.markdown')
-rw-r--r--c.html.markdown5
1 files changed, 1 insertions, 4 deletions
diff --git a/c.html.markdown b/c.html.markdown
index a737696f..4e2c2cdf 100644
--- a/c.html.markdown
+++ b/c.html.markdown
@@ -909,8 +909,7 @@ Node createLinkedList(int *vals, int len);
## Further Reading
-Best to find yourself a copy of [K&R, aka "The C Programming Language"](https://en.wikipedia.org/wiki/The_C_Programming_Language)
-It is _the_ book about C, written by Dennis Ritchie, the creator of C, and Brian Kernighan. Be careful, though - it's ancient and it contains some
+Best to find yourself a copy of [K&R, aka "The C Programming Language"](https://en.wikipedia.org/wiki/The_C_Programming_Language). It is _the_ book about C, written by Dennis Ritchie, the creator of C, and Brian Kernighan. Be careful, though - it's ancient and it contains some
inaccuracies (well, ideas that are not considered good anymore) or now-changed practices.
Another good resource is [Learn C The Hard Way](http://learncodethehardway.org/c/) (not free).
@@ -921,6 +920,4 @@ It's very important to use proper spacing, indentation and to be consistent with
Readable code is better than clever code and fast code. For a good, sane coding style to adopt, see the
[Linux kernel coding style](https://www.kernel.org/doc/Documentation/process/coding-style.rst).
-Other than that, Google is your friend.
-
[1] [Why isn't sizeof for a struct equal to the sum of sizeof of each member?](https://stackoverflow.com/questions/119123/why-isnt-sizeof-for-a-struct-equal-to-the-sum-of-sizeof-of-each-member)