Skip to content

Resources for learning C that are the best in my opinion.

License

Notifications You must be signed in to change notification settings

jivan84/C-Learning-Resources

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 

Repository files navigation

C learning resources

This repository contains a list of books and other resources about C programming that in my opinion are best to learn from. There are many sources but not every one is correct. This way, beginners make a lot of mistakes in their code. I suggest reading books in the order I've provided.

Where not to learn from:

  • TutorialsPoint. TutorialsPoint is an good website for reference but not for learning. If you want to learn something to its fullest, get a book.
  • Udemy. Udemy is not good place to learn C from. Courses cost pretty much ($100). Some courses recommend using old Borland C++ Builder - learning outdated stuff is not a good way to go.
  • SoloLearn. SoloLearn does not offer any course to learn C from. The website teaches you only theoretically how to do something, while your own experience teaches practically you how to do something. Practice beats theory.
  • Youtube. Learning from various youtube channels that are not-so-popular is not a good idea. You need solid place to learn from. Although, there are channels like this one, they introduce really bad programming practices and teach how not to program.

Where to learn from:

  • K&R book is often thought as the Bible of C. There are many C standards but K&R C is thought of as the most common - every compiler has to support it. The most used standard is C89, although we have C99 and C11 that are more recent. This way, K&R book is always on topic. It was written by the creators of C - they can't be wrong.
    • Pros:
      • This book is written by Dennis Ritchie, who was one of the main people behind the development and design of C and UNIX.
      • This book is so well known that it's affectionately called "K&R", after the authors.
      • It's been cited in many other books and is familiar to most, if not all, CS students.
      • The challenges at the end of each chapter do a great job requiring many of the skills learned up to that point. Completing the challenges is a great way of ensuring that you understand the material.
    • Cons:
      • The K&R style works for old Unix mainframe command-line programs that exit after a simple task and leave the cleanup to the OS; where input is only from trusted experts; and most functions are only called internally to the program. The environment is very different today. This style will get your server pwned by hackers, or crash it due to a memory leak. You will have to learn C again to use C correctly in the real world today.
      • Some practices are out of date, so errata and googling is needed while going through the book.
      • Assumes familiarity not only with programming concepts but some C language specifics which are not so simple for beginners.
  • C Programming: Modern approach, 2nd Edition
    • Pros:
      • The book really challenges you to think like a programmer by constantly asking questions that force you to solve problems, rather than telling you how to solve the problem and only asking you to write the syntax. This way helps beginner programmers to get into programming.
      • The author breaks things down into small pieces and uses examples to explain everything in a very clear way.
      • Doesn't have exercise answers (can be counted like a con).
  • Learn C the hard way. Just looking at the title, it may not be greatest book for newcomer to learn.
    • Pros
      • It's not just about C. It will teach to become an over-all better programmer and give a better understanding of computer science. You are going to learn about things like testing, debugging, and sorting algorithms.
      • Includes 52 practical project ideas that include everything from pointers to stacks and queues.
    • Con: States in the preface that it is not for first-time programmers. Better check something else, if you are new to C.
  • C Programming Absolute Beginner's Guide (3rd Edition). It's suggested to check out this book if others are too difficult for you.
    • Pro: There are 32 chapters in this book, which gives 352 pages. The short chapters make it extremely easy to use this book as a reference, and breaks everything down into small pieces that are easy to digest.
    • Con: This book, as the title suggests, is really aimed at people with no prior programming experience. Fundamentals are gone through in detail, this would be quite a slow review for someone with experience in another language.
  • NASA C style book. This book is pretty nice place to learn the proper way on how to program in C to write readable code.
  • Steve Summit's C notes. These notes expand on the K&R book. You'll find other C goodies in his main webpage too.

Books that I am not sure about their quality:

Best programming environment for a C programmer

  • TLDR: UNIX, GNU/Linux.
  • NTLDR: Programming doesn't take place on a piece of paper. Maybe it starts there, or the black-board, when you're still exploring the ideas and the algorithms, but when it's time to type down your ideas and test them against the machine, you need a programming enviroment to program in. The UNIX and GNU/Linux systems were made for this purpose, and C was created to create UNIX. In other words, UNIX and C are made for each other. One cannot exist without the other, and if you want to maximize your potential as a C programmer, a knowledge of the UNIX based operating systems will make your life so_much_easier !. Luckilly for you, Brian (co-creator of C and UNIX) and Rob (member of the UNIX team, the "Plan 9 from Bell Labs" and co-creator of golang) wrote a book about it. Read the reviews in goodreads and buy it from your an online bookshop.

Why to learn C?

There are a lot of programmers that think C is not language worth learning. Let's review this.

  • C was originally developed for the UNIX operating system by Dennis Ritchie. It's quite simple, is not tied to any particular hardware or operating system. If some platform has C compiler, it's worth attention.
  • C is really general purpose language, so this way it's so common. This makes it easier to write programs that will run without any changes on practically all machines that have POSIX compiliant API's.
  • The C language is a middle-level language as it combines the elements of high-level languages (structures, unions, enums, functions, conditionals) with the functionalism of assembly language.
  • It's possible to simulate OOP in C and write an operating system. C allows the manipulation of nearly everything giving the programmer more control over exactly how the program will behave and more direct access to the mechanics of the underlying hardware, while keeping application fully portable. C is often quoted as cross-platform assembly.
  • C is still one of the most popular programming languages out there at the time of writing it was 2nd language overall. Overall, C was first most common language from 1988 to 2013! It's Popularity is still growing. In the year of writing, C had the highest rise in ratings in a year.
  • C is everywhere. Your keyboard is very probably powered by C, same as your fridge or even modem. Microsoft Windows was developed in C and has nearly 90% market share. Same as Linux, MacOS, iOS, Android and Windows Phone. The world’s most popular databases, including Oracle Database, MySQL, MS SQL Server, and PostgreSQL are developed in C. 3D movies are created with applications that are generally written in C and C++. The alarm clock that wakes you up is likely programmed in C. Then you use your microwave or coffee maker to make your breakfast. They are also embedded systems and therefore are probably programmed in C. You turn on your TV or radio while you eat your breakfast. Those are also embedded systems, powered by C. When you open your garage door with the remote control you are also using an embedded system that is most likely programmed in C. You park your car, go to the shop and use vending machine to get a soda. What language did they use to program this vending machine? Probably C. Then you buy something at the store. The cash register is also programmed in C. And when you pay with your credit card? The credit card reader is, again, likely programmed in C.
  • There are many programming languages, today, that allow developers to be more productive than with C for different kinds of projects. There are higher level languages that provide much larger built-in libraries that simplify working with JSON, XML, UI, web pages, client requests, database connections, media manipulation, and so on. But despite that, there are plenty of reasons to believe that C programming will remain active for a long time. In programming languages one size does not fit all.
  • Here are some reasons that C is unbeatable, and almost mandatory, for certain applications:
    • Arbitrary memory address access and pointer arithmetic is an important feature that makes C a perfect fit for system programming (operating systems and embedded systems).
    • A common language feature that system programming cannot rely on it's garbage collection, or even just dynamic allocation for some embedded systems. Embedded applications are very limited in time and memory resources. They are often used for real-time systems, where a non-deterministic call to the garbage collector cannot be afforded. And if dynamic allocation cannot be used because of the lack of memory, it is very important to have other mechanisms of memory management, like placing data in custom addresses, as C pointers allow. Languages that depend heavily on dynamic allocation and garbage collection wouldn’t fit for resource-limited systems.
    • C has a very small runtime. And the memory footprint for its code is smaller than for most other languages. When compared to C++, for example, a C-generated binary that goes to an embedded device is about half the size of a binary generated by similar C++ code. One of the main causes for that is exceptions support. Exceptions are a great tool added by C++ over C, and, if not triggered and smartly implemented, they have practically no execution time overhead (but at the cost of increasing the code size).
    • C is a lingua franca for developers. Many implementations of new algorithms in books or on the internet are first (or only) made available in C by their authors. This gives the maximum possible portability for the implementation. I’ve seen programmers struggling on the internet to rewrite a C algorithm to other programming languages because he or she didn’t know very basic concepts of C.

The Illuminati doesn't run the world. C programmers do.

Contribute

Please note that this list as stated on beginning, is based primarily on my opinion. If you disagree with some facts, please open an issue or submit a pull request whose contents satisfy you.

Future work

I am working on a C book that after review will probably get on this list.

About

Resources for learning C that are the best in my opinion.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published