Skip to content

Instantly share code, notes, and snippets.

@matthewjwolff
matthewjwolff / final_review.rst
Created December 1, 2016 19:21
CSC 4402 Final Review

Final Exam

Cumulative, weighted heavier towards content after midterm. Basic ideas and SQL queries from before midterm. Relational algebra will not be asked, but relational algebra is required for query optimization.

Summary of contents covered after midterm

@parse
parse / shell.c
Created May 11, 2011 07:31
Simple shell in C
/* Compile with: g++ -Wall –Werror -o shell shell.c */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/wait.h>