C Compiler Errors and Warnings

Compiler Errors C compiler errors split into two main categories. Syntax Errors: something wrong with the syntax of the language itself. Semantic Errors: something wrong with the logic of the code, giving unexpected results. Syntax Errors Syntax errors are quite common regardless the programmer experience, we all sometimes make typos. For example instead of writing int to declare an integer, one may write it as imt and that will result in a syntax error during the compilation stage....

July 16, 2023

Best Modern C Programming Language Books for Beginners

If you’re starting learning (or refreshing yourself) C programming language then I recommend 2 excellent modern books. C for Dummies, 2nd Ed, Dan Gookin. Modern C, Jens Gustedt. The C for Dummies is easier to follow if you’re beginner in programming in general. But the Modern C gives more explanation and some of the inner concepts of how and why. Both books are available as hardcopy and/or digital ebooks. If you buy a physical copy of ‘Modern C’ then you can get the ebook version for free....

July 10, 2023