This information is advisory only. The authoritative course description and requirements for a given semester are defined in the course syllabus.
Overview
This course is a required course in the 2018 and later curriculum. It covers low-level systems programming in userspace at the userspace/kernel boundary. Students will learn about the C programming language, system calls, memory management, threads, and concurrency.
You can find advice for succeeding in CSE 220 here. This is likely to be one of the more difficult courses you take in your career at UB, both due to the content of the course and to the position it has in the curriculum. We understand this, and are here to support your learning. Work hard, ask questions, and get help when you need it.
Offerings
Spring 2025 Fall 2024This Offering: Spring 2025
Lecture |
| ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Lab | Check HUB | ||||||||||||
Office Hours | TBD | ||||||||||||
SA Office Hours | (See Piazza) |
Syllabus
Lectures
Lecture | Date |
---|---|
Introduction to CSE 220 and C (pdf) | 2025-01-22 |
Prerequisites
Students are expected to have a solid grasp of simple data structures (such as lists and arrays) and some programming experience. (CSE 116 or equivalent experience.)
Text
There are three required texts for this course:
- The C Programming Language, Second Edition, by .
- Operating Systems: Three Easy Pieces (free online), Version 1.10, by .
- Computer Science from the Bottom Up (free online), by .
Students will also be required to use TopHat for lecture interaction, which will be used for direct evaluation in the form of lecture quizzes, as well as attendance tracking.
There is one optional text for this course:
- Computer Systems: A Programmer's Perspective, Third Edition, by .
The listed textbooks are truly excellent, and we recommend that you consider buying a copy to keep for your career.
Unfortunately CS:APP is quite expensive (more expensive than we would expect, given the number of copies that must be sold per year!). We have made it optional for this reason. The least expensive legitimate method we are aware of for purchasing this book is RedShelf. There is a Second International Edition PDF floating around the Internet that students often pirate; be warned that it has many errors and is different from the required Third Edition text. If you are purchasing a used textbook online, try to make sure you are getting the US Edition, as the International Edition has more errors.
Policies
The ultimate authority for course policies is the course syllabus.
This course additionally adopts Ethan’s general academic integrity policy.
Topics
The topics covered in this course include:
- The Unix environment
- The C programming language
- Compiler and linker invocation and their roles in program development
- Version control, build, and other software development systems
- Representation of in-memory data structures
- Memory management
- The kernel/userspace boundary and the system call interface
- Threads
- Synchronization primitives and concurrency
Course Structure
This course will be conducted in-person. Students are expected to attend lectures and labs unless they have a University-approved reason to miss. Attendance will be taken. Students must not attend if they have reason to believe that they may have a communicable infection or illness, with or without noticeable symptoms.
The primary deliverables for this course are weekly labs and several larger projects. Labs will consist of short exercises intended to deepen student understanding of course material (and perhaps cover background material for course projects), and will be evaluated in-lab. Course projects will be C language implementations of concepts discussed in class. Projects and labs will make up about half of the final course grade, with the remainder being quizzes and exams.
There is one midterm and one (cumulative) final for this course. These written exams cover theoretical and fundamental materials beyond the specific implementation details required for the programming assignments and labs. There will be a small number of practical lab exams, for which students are expected to solve a lab-size programming exercise in lab in a proctored exam environment. In-lecture activities and short quizzes will cover lecture content, lab procedures, course policies, and other important material.
There are no other graded homeworks for this course.
Programming Assignments
All projects for this course must be implemented in C and compile and run correctly on the course-provided time-sharing system. Students will be expected to use version control and appropriate build tools (such as make) to manage their projects.