2

C in 7 days

Learn how to program in C in just 7 days.

  1. First steps of C
  2. Variables
  3. Operators
  4. The ASCII character set
  5. Keyboard input
  6. The modulo operator and conditions
  7. Conditional instructions
  8. Boolean expressions
  9. The switch instruction
  10. Read in a note and convert it in a letter
  11. Enumerations
  12. Maximum and minimum values for integers
  13. Size in memory of elementary types
  14. Display a F°/C° conversion table
  15. Compute a factorial
  16. Sum of a series of numbers to the square
  17. Mean of the positive numbers input from the keyboard
  18. Calculator with 5 operations
  19. Convert a floating-point number to an integer
  20. Rounding error
  21. Trigonometry
  22. Count the number of characters read
  23. Copy the input flow into the output flow
  24. Simple data encryption
  25. Series of random numbers
  26. Number to the cube
  27. Recurrent function
  28. Unary tests
  29. Library of functions
  30. Separate compilation
  31. Link editing
  32. Boolean functions
  33. Initializing a table
  34. Count the letters in a document
  35. Iterate in a table
  36. Sum of the elements of a table
  37. Linear search
  38. Bubble sort
  39. Insertion sort
  40. Search by dichotomy
  41. Table with 2 dimensions
  42. Write a command
  43. Passing arguments by address
  44. Generate a unique static symbol
  45. Arguments passed on the command-line
  46. Apply a function to the elements of a table
  47. Functions on character strings
  48. Reverse the contents of a string of characters
  49. Read a floating point number
  50. Read an IP address
  51. Using a structure
  52. Compute the distance between two points
  53. Using a union
  54. Display a file in hexadecimal
  55. Count C keywords in a file
  56. Sort a file by line
  57. Chaining data
  58. Run an external program
  59. Compute prime numbers
  60. The Monte-Carlo algorithm