Basic Unix Knowledge Learn the basics of operating in a terminal environment and of the Unix operating system, such as file permissions.
Basic Programming Knowledge Learn basic concepts of programming such as file input/output and looping, and learn to apply these skills to a variety of problems.
Practical Programming Skills Learn how to implement, compile, and execute simple programs using the C programming language.
Class Schedule
Lecture Overview
Unix Usage
Programming Basics
Floating Point
Branching
Loops I
Loops II
Arrays, Preprocessor
Random Numbers, Math Libraries
Pointers
More Pointers
Characters, Strings
File Input/Output
Structures
Review
Why the C Language?
General-purpose high-performance language
Easy to map to machine instructions
Can be used in a very wide diversity of applications
Code optimization and error checking during compilation
#include<stdio.h>intmain( int argc, char *argv[] ){
printf("Hello World!\n");
return0;
}
Even if you missed the class you will have to hand in a report
Class Textbook
Kernighan, Brian W., and Dennis M. Ritchie. The C Programming Language, Second Edition. Prentice Hall, 2006. ISBN13: 978-0131103627
Hard to find in bookstores
Relatively easy to find online versions
How the Classes Work
The classes will be dominantly on-demand!
Each week there will be a video to watch
Evaluation will be 100% based on homework (Moodle)
There will be quizzes to answer
There will also be programming exercises to hand-in
TAs will provide assistance
There will be a help session Mondays from 13:00 to 14:00 JST in place of class hours
They will also help at other times, however, do not rely completely on this support
Homework
There will, in general, be homework every week
Types of homework:
Test: answer a test on Moodle
Exercise: write a computer program and hand it in
Generally, due date will be 2 weeks from the assignment
Make sure to double check on Moodle!
Late hand-ins will not be accepted
TA Assistance
We will be using Slack
Use the invitation link on Moodle to join
Usage:
Feel free to ask for help with particular issues in the #c-programming channel
It is also possible to direct message a TA
Do not paste full programs in public channels, only send that to the TA
The C Programming Language
General: used extensively in low level programming: operating system, drivers, microcontrollers…
Portable: usable on almost all possible different hardware
Static typed: the types of the variables must be declared
Imperative: specifically code what must be done using statements
Code example
#include<stdio.h> // Header that lets us reuse code// Entry point, code starts by running this functionintmain( int argc, char *argv[] ){
printf("Hello World!\n"); // Statementreturn0; // Returns 0 when program successfully exited
}
Headers let us reuse code
For each task or statement we use functions
main is a special function that is called when the program starts
Code must be compiled into machine code that can be run by the computer