Programming Resources
For Fun and Learning
Charles Cusack
Computer Science
Hope College
main

Python
C++
JAVA
PHP
SQL

Assignments


QuickSortProject


util.h

void Swap(int &x,int &y);

// For use with qsort
int compare(const void *x, const void *y);

// Misc useful stuff
void printArray(int *a,int n);
void clearArray(int *a,int n);
int equals(int *a,int *b,int n);