C in 7 days
Learn how to program in C in just 7 days.
- First steps of C
- Variables
- Operators
- The ASCII character set
- Keyboard input
- The modulo operator and conditions
- Conditional instructions
- Boolean expressions
- The switch instruction
- Read in a note and convert it in a letter
- Enumerations
- Maximum and minimum values for integers
- Size in memory of elementary types
- Display a F°/C° conversion table
- Compute a factorial
- Sum of a series of numbers to the square
- Mean of the positive numbers input from the keyboard
- Calculator with 5 operations
- Convert a floating-point number to an integer
- Rounding error
- Trigonometry
- Count the number of characters read
- Copy the input flow into the output flow
- Simple data encryption
- Series of random numbers
- Number to the cube
- Recurrent function
- Unary tests
- Library of functions
- Separate compilation
- Link editing
- Boolean functions
- Initializing a table
- Count the letters in a document
- Iterate in a table
- Sum of the elements of a table
- Linear search
- Bubble sort
- Insertion sort
- Search by dichotomy
- Table with 2 dimensions
- Write a command
- Passing arguments by address
- Generate a unique static symbol
- Arguments passed on the command-line
- Apply a function to the elements of a table
- Functions on character strings
- Reverse the contents of a string of characters
- Read a floating point number
- Read an IP address
- Using a structure
- Compute the distance between two points
- Using a union
- Display a file in hexadecimal
- Count C keywords in a file
- Sort a file by line
- Chaining data
- Run an external program
- Compute prime numbers
- The Monte-Carlo algorithm