yoshi@erdos:~/Main/www/2002i/CompII/exx/LTSs/Sec10.2$ ll total 4 lrwxrwxrwx 1 yoshi yoshi 14 Apr 30 13:59 Makefile -> ../../Makefile -rw-r--r-- 1 yoshi yoshi 1251 Apr 30 14:12 prog10.1.c yoshi@erdos:~/Main/www/2002i/CompII/exx/LTSs/Sec10.2$ make prog10.1 make prog10.1.o make[1]: Entering directory `/home/yoshi/IME/www/2002i/CompII/exx/LTSs/Sec10.2' gcc -g -I. -Wall -pedantic -c prog10.1.c make[1]: Leaving directory `/home/yoshi/IME/www/2002i/CompII/exx/LTSs/Sec10.2' gcc -g -I. -Wall -pedantic -o prog10.1 prog10.1.o -lm yoshi@erdos:~/Main/www/2002i/CompII/exx/LTSs/Sec10.2$ prog10.1 10 1 19755 27777 33522 39438 55396 76822 78309 79844 84018 91164 yoshi@erdos:~/Main/www/2002i/CompII/exx/LTSs/Sec10.2$ ../prog7.1 10 1 19755 27777 33522 39438 55396 76822 78309 79844 84018 91164 yoshi@erdos:~/Main/www/2002i/CompII/exx/LTSs/Sec10.2$ time prog10.1 1000000 1 > /dev/null real 0m1.576s user 0m1.560s sys 0m0.020s yoshi@erdos:~/Main/www/2002i/CompII/exx/LTSs/Sec10.2$ time ../prog7.1 1000000 1 > /dev/null real 0m1.197s user 0m1.200s sys 0m0.000s yoshi@erdos:~/Main/www/2002i/CompII/exx/LTSs/Sec10.2$ time prog10.1 10000000 1 > /dev/null 00000 1 > /dev/null real 0m16.413s user 0m16.290s sys 0m0.040s yoshi@erdos:~/Main/www/2002i/CompII/exx/LTSs/Sec10.2$ time ../prog7.1 10000000 1 > /dev/null 00000 1 > /dev/null real 0m12.969s user 0m12.830s sys 0m0.090s yoshi@erdos:~/Main/www/2002i/CompII/exx/LTSs/Sec10.2$ make clean /bin/rm -f *~ \#~ .\#* *.o core a.out yoshi@erdos:~/Main/www/2002i/CompII/exx/LTSs/Sec10.2$