yoshi@erdos:~/Main/www/2002i/CompII/exx/LTSs/Sec10.5$ ll total 8 lrwxrwxrwx 1 yoshi yoshi 11 May 2 19:36 Makefile -> ../Makefile -rw-r--r-- 1 yoshi yoshi 2990 Apr 30 15:10 example.txt -rw-r--r-- 1 yoshi yoshi 1340 May 2 19:42 prog10.4.c yoshi@erdos:~/Main/www/2002i/CompII/exx/LTSs/Sec10.5$ make prog10.4 make prog10.4.o make[1]: Entering directory `/home/yoshi/IME/www/2002i/CompII/exx/LTSs/Sec10.5' gcc -g -I. -Wall -pedantic -c prog10.4.c make[1]: Leaving directory `/home/yoshi/IME/www/2002i/CompII/exx/LTSs/Sec10.5' gcc -g -I. -Wall -pedantic -o prog10.4 prog10.4.o -lm yoshi@erdos:~/Main/www/2002i/CompII/exx/LTSs/Sec10.5$ ../prog7.1 10 1 19755 27777 33522 39438 55396 76822 78309 79844 84018 91164 yoshi@erdos:~/Main/www/2002i/CompII/exx/LTSs/Sec10.5$ prog10.4 10 1 19755 27777 33522 39438 55396 76822 78309 79844 84018 91164 yoshi@erdos:~/Main/www/2002i/CompII/exx/LTSs/Sec10.5$ time ../prog7.1 1000 1 > /dev/null real 0m0.003s user 0m0.010s sys 0m0.000s yoshi@erdos:~/Main/www/2002i/CompII/exx/LTSs/Sec10.5$ time prog10.4 1000 1 > /dev/null real 0m0.004s user 0m0.000s sys 0m0.010s yoshi@erdos:~/Main/www/2002i/CompII/exx/LTSs/Sec10.5$ time ../prog7.1 10000 1 > /dev/null 1 > /dev/null real 0m0.014s user 0m0.010s sys 0m0.000s yoshi@erdos:~/Main/www/2002i/CompII/exx/LTSs/Sec10.5$ time prog10.4 10000 1 > /dev/null real 0m0.011s user 0m0.010s sys 0m0.000s yoshi@erdos:~/Main/www/2002i/CompII/exx/LTSs/Sec10.5$ time ../prog7.1 100000 1 > /dev/null 1 > /dev/null real 0m0.114s user 0m0.110s sys 0m0.000s yoshi@erdos:~/Main/www/2002i/CompII/exx/LTSs/Sec10.5$ time prog10.4 100000 1 > /dev/null 1 > /dev/null real 0m0.116s user 0m0.120s sys 0m0.000s yoshi@erdos:~/Main/www/2002i/CompII/exx/LTSs/Sec10.5$ time ../prog7.1 1000000 1 > /dev/null 1 > /dev/null real 0m1.342s user 0m1.240s sys 0m0.000s yoshi@erdos:~/Main/www/2002i/CompII/exx/LTSs/Sec10.5$ time prog10.4 1000000 1 > /dev/null 1 > /dev/null real 0m1.261s user 0m1.150s sys 0m0.010s yoshi@erdos:~/Main/www/2002i/CompII/exx/LTSs/Sec10.5$ time ../prog7.1 10000000 1 > /dev/null 1 > /dev/null real 0m13.904s user 0m13.190s sys 0m0.070s yoshi@erdos:~/Main/www/2002i/CompII/exx/LTSs/Sec10.5$ time prog10.4 10000000 1 > /dev/null 1 > /dev/null real 0m11.789s user 0m11.410s sys 0m0.160s yoshi@erdos:~/Main/www/2002i/CompII/exx/LTSs/Sec10.5$ make clean /bin/rm -f *~ \#~ .\#* *.o core a.out yoshi@erdos:~/Main/www/2002i/CompII/exx/LTSs/Sec10.5$