yoshi@erdos:~/Main/www/2002i/CompII/exx/Sec6.7/ex3$ ll
total 12
lrwxrwxrwx    1 yoshi    yoshi          14 Apr 16 11:49 Array.c -> ../ex1/Array.c
lrwxrwxrwx    1 yoshi    yoshi          14 Apr 16 11:49 Array.h -> ../ex1/Array.h
-rw-r--r--    1 yoshi    yoshi         452 Apr 16 11:55 Item.c
-rw-r--r--    1 yoshi    yoshi         366 Apr 16 11:52 Item.h
lrwxrwxrwx    1 yoshi    yoshi          15 Apr 16 11:50 Makefile -> ../ex1/Makefile
lrwxrwxrwx    1 yoshi    yoshi          15 Apr 16 11:49 driver.c -> ../ex1/driver.c
-rw-r--r--    1 yoshi    yoshi         203 Apr 16 11:57 texto.txt
yoshi@erdos:~/Main/www/2002i/CompII/exx/Sec6.7/ex3$ make Item.o Array.o driver.o
gcc -g -I. -Wall -pedantic -c Item.c
gcc -g -I. -Wall -pedantic -c Array.c
gcc -g -I. -Wall -pedantic -c driver.c
yoshi@erdos:~/Main/www/2002i/CompII/exx/Sec6.7/ex3$ gcc Array.o Item.o driver.o
yoshi@erdos:~/Main/www/2002i/CompII/exx/Sec6.7/ex3$ cat texto.txt 
Genesis
In
the
beginning
God
created
the
heaven
and
the
earth
And
the
earth
was
without
form
and
void
and
darkness
was
upon
the
face
of
the
deep 
And
the
Spirit
of
God
moved
upon
the
face
of
the
waters

yoshi@erdos:~/Main/www/2002i/CompII/exx/Sec6.7/ex3$ a.out 1000 0 < texto.txt 
And
And
Genesis
God
God
In
Spirit
and
and
and
beginning
created
darkness
deep
earth
earth
face
face
form
heaven
moved
of
of
of
the
the
the
the
the
the
the
the
the
upon
upon
void
was
was
waters
without

yoshi@erdos:~/Main/www/2002i/CompII/exx/Sec6.7/ex3$ make clean
/bin/rm -f *~ \#~ .\#* *.o core a.out
yoshi@erdos:~/Main/www/2002i/CompII/exx/Sec6.7/ex3$