C Programming#
In this section, we will discuss the C programming language. C is a general-purpose, procedural computer programming language supporting structured programming, lexical variable scope, and recursion, with a static type system. By design, C provides constructs that map efficiently to typical machine instructions. It has found lasting use in applications previously coded in assembly language. Such applications include operating systems and various application software for computer architectures that range from supercomputers to PLCs and embedded systems.
Table of Contents#
- Backdoored Webserver
- Beej’s Guide to C Programming
- Section 5.1 Memory and Variables
- Section 5.3 Dereferencing
- Section 5.4 Passing Pointers as Arguments
- Section 6.1 Arrays: An Easy Example
- Section 6.3 Arrays: Array Initializers
- Section 6.4 Arrays: Out of Bounds
- Section 6.5 Arrays: Multidimensional Arrays
- Section 6.6.1 Arrays and Pointers: Getting a Pointer to an Array
- Section 6.6.2 Arrays and Pointers: Passing Single-Dimensional Arrays to Functions