This is a course in computer operating systems. The goals of the course are,
Part 1: Introduction and Requirements
#include<stdio.h>
int f(int i) { return 3+i ; }
int g(int i) { return i*i ; }
int h(int i) { return 5*i ; }
int z(int i) { return 0 ; }
int main(int argc, char * argv[]) {
int i, j = 1;
int (*fcts[3])(int) = {z,z,z};
for (i=0;i<3;i++) j = fcts[i](j) ;
printf("%d\n",j) ;
return 0 ;
}
References of use in this course; some are referred to in the class notes.

This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License.