projects
- intro (due 20140903)
- "Hello, World!" (due 20140903)
- notes (on-going)
- squares (due 20140924)
- Day of Week (due 20141001)
- PipeMath (due 20141008)
projects
#include <stdio.h> #include <stdlib.h> int main() { char *a; a = (char *) malloc (sizeof(char)); *a = 48; //fprintf(stdout, "*a is %c\n", *a); return(0); }