Utility source & header files:
util.c util.h
make object file using "gcc -c util.c"
Program to estimate pi:
est_pi.c
compile using "gcc est_pi.c util.o -lm -o est_pi"
Program to time matrix*vector operation:
array.c
compile using "gcc array.c util.o -o array"