CC=${1-CC}
for file in *.c
do
rm -f a.out
echo :: compiling $file ::
$CC $file 
echo :: executing $file ::
a.out
done
