1. Introduction to C
Mentor |
|
Course Materials |
|
IRC |
irc.gimp.net #gnome-university |
This course will cover the basics of the C programming language. The student will familiarize themselves with the basic keywords of the language and how to structure code. By the end of the course, each student will have written themselves a calculator to perform basic arithmetic.
Students will work through the following chapters and perform the exercises. Questions may be asked of the mentor as well as the community on IRC.
1.1. Chapter 1
1.1.1. Topics
- What is source code and machine code.
- What is a compiler, linker, and toolchain.
- Structure of a basic C program.
- Compiling with warning flags.
- What is a type?
1.1.2. Material
Chapter 1.pdf (click on "View Raw" to download)
1.2. Chapter 2
1.2.1. Topics
- Basic arithmetic operators such as -, +, /, and *, ++, --.
- Writing comments.
- More on printf(), introduction to scanf().
- Difference between %d and %lf in format functions.
1.3. Chapter 3
1.3.1. Topics
- What is scope?
- What are code blocks?
- Conditionals with if/else if/else.
1.4. Chapter 4
1.4.1. Topics
- Loops with while and do/while.
- Loops with for.
1.5. Chapter 5
1.5.1. Topics
- Conditionals with switch/case.
- When to use if/else if/else vs switch/case.
1.6. Chapter 6
1.6.1. Topics
- Creating functions.
- static keyword.
- default values (static defaults to 0, etc)
1.7. Chapter 7
1.7.1. Topics
- Enumerations
- Headers
- Preprocessor
- Separating code into separate file.
1.8. Chapter 8
1.8.1. Topics
- What are Arrays?
- Stack vs Heap.
- What is a string?
- UTF-8 vs ASCII.
- Arrays of strings (GStrv)
1.9. Chapter 9
1.9.1. Topics
- What is a Structs?
- What is a Union?
- Spliting, joining, and manipulating strings.
1.10. Chapter 10
1.10.1. Topics
- Pointers.
- Allocating and freeing memory.
- Heap and Stack allocations.
1.11. Chapter 11
1.11.1. Topics
- Bitwise operators
And (&), Or (|), Exclusive Or (^), Ones Complement (~)
Left Shift (<<), Right Shift (>>)
- Bit fields
1.12. Chapter 12
1.12.1. Topics
- Big-endian vs Little-endian
- Host byte order
- Network byte order
- Portable sized types (gint32, gint16, etc)
1.13. Chapter 13
1.13.1. Topics
- Linked lists (GList, GSList).
- Creating
- Iterating
- Freeing
- Hashtables (GHashTable), hash functions, compare functions.
- Passing functions as parameters
- Creating
- Inserting
- Fetching
- Iterating
- GArray, GByteArray, and GPointerArray
1.14. Chapter 14
1.14.1. Topics
- Building filenames
- Listing directories.
- Opening, reading, and writing to disk.