├── .gitignore ├── Ch08 ├── checking.c ├── echo.c ├── echo_eof.c ├── file_eof.c ├── guess.c ├── menuette.c ├── newguess.c ├── showchar1.c └── showchar2.c ├── Ch09 ├── binary.c ├── factor.c ├── hotel.c ├── hotel.h ├── lesser.c ├── lethead1.c ├── lethead2.c ├── loccheck.c ├── misuse.c ├── proto.c ├── recur.c ├── swap1.c ├── swap2.c └── usehotel.c ├── Ch10 ├── arf.c ├── array2d.c ├── bounds.c ├── day_mon1.c ├── day_mon2.c ├── day_mon3.c ├── designate.c ├── flc.c ├── no_data.c ├── order.c ├── pnt_add.c ├── ptr_ops.c ├── rain.c ├── some_data.c ├── sum_arr1.c ├── sum_arr2.c ├── vararr2d.c ├── zippo1.c └── zippo2.c ├── Ch11 ├── addresses.c ├── arrchar.c ├── compare.c ├── compback.c ├── copy1.c ├── copy2.c ├── copy3.c ├── fgets1.c ├── fgets2.c ├── fgets3.c ├── format.c ├── getsputs.c ├── join_chk.c ├── mod_str.c ├── name1.c ├── nogo.c ├── nono.c ├── p_and_s.c ├── put_out.c ├── put_put.c ├── quit_chk.c ├── repeat.c ├── scan_str.c ├── sort_str.c ├── starsrch.c ├── str_cat.c ├── strcnvt.c ├── strings1.c ├── strptr.c └── test_fit.c ├── Ch12 ├── diceroll.c ├── diceroll.h ├── dyn_arr.c ├── forc99.c ├── global.c ├── hiding.c ├── loc_stat.c ├── manydice.c ├── parta.c ├── partb.c ├── r_drive0.c ├── r_drive1.c ├── rand0.c ├── s_and_r.c └── where.c ├── Ch13 ├── addaword.c ├── append.c ├── count.c ├── eddy ├── randbin.c ├── reducto.c ├── reverse.c └── wordy ├── Ch14 ├── book.c ├── booksave.c ├── complit.c ├── enum.c ├── flexmemb.c ├── friend.c ├── friends.c ├── funct_ptr.c ├── funds1.c ├── funds2.c ├── funds3.c ├── funds4.c ├── manybook.c ├── names1.c ├── names2.c └── names3.c ├── Ch15 ├── align.c ├── binbit.c ├── dualview.c ├── fields.c └── invert4.c ├── Ch16 ├── assert.c ├── byebye.c ├── doubleincl.c ├── eatline.h ├── el1.c ├── el2.c ├── file1.c ├── file2.c ├── file3.c ├── generic.c ├── glue.c ├── ifdef.c ├── mac_arg.c ├── mems.c ├── mytype.c ├── names.h ├── names_st.c ├── names_st.h ├── predef.c ├── preproc.c ├── qsorter.c ├── rect_pol.c ├── statasrt.c ├── subst.c ├── useheader.c ├── varargs.c └── variadic.c ├── Ch17 ├── films1.c ├── films2.c ├── films3.c ├── list.c ├── list.h ├── mall.c ├── petclub.c ├── queue.c ├── queue.h ├── tree.c ├── tree.h └── use_q.c ├── Chapter01 ├── inform.c ├── listing1.c └── listing2.c ├── Chapter02 ├── fathm_ft.c ├── first.c ├── good.c ├── nogood.c ├── stillbad.c └── two_func.c ├── Chapter03 ├── altnames.c ├── badcount.c ├── bases.c ├── charcode.c ├── floaterr.c ├── platinum.c ├── print1.c ├── print2.c ├── showf_pt.c ├── toobig.c └── typesize.c ├── Chapter04 ├── defines.c ├── flags.c ├── floatcnv.c ├── floats.c ├── input.c ├── intconv.c ├── longstrg.c ├── pizza.c ├── praise1.c ├── praise2.c ├── printout.c ├── prntval.c ├── skiptwo.c ├── stringf.c ├── talkback.c ├── varwid.c └── width.c ├── Chapter05 ├── add_one.c ├── addemup.c ├── bottles.c ├── convert.c ├── divide.c ├── golf.c ├── min_sec.c ├── post_pre.c ├── pound.c ├── running.c ├── shoes1.c ├── shoes2.c ├── sizeof.c ├── squares.c ├── ules.c └── wheat.c ├── Chapter06 ├── boolean.c ├── cmpflt.c ├── do_while.c ├── entry.c ├── for_cube.c ├── postage.c ├── power.c ├── rows1.c ├── rows2.c ├── scores_in.c ├── summing.c ├── sweetie1.c ├── sweetie2.c ├── t_and_f.c ├── trouble.c ├── truth.c ├── when.c ├── while1.c ├── while2.c └── zeno.c ├── Chapter07 ├── animals.c ├── break.c ├── chcount.c ├── colddays.c ├── cypher1.c ├── cypher2.c ├── divisors.c ├── electric.c ├── paint.c ├── skippart.c ├── vowels.c └── wordcnt.c ├── LICENSE ├── README.md └── XB ├── complex.c ├── complex0.c ├── def.c ├── offset.c ├── strrtok.c └── wider.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/.gitignore -------------------------------------------------------------------------------- /Ch08/checking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch08/checking.c -------------------------------------------------------------------------------- /Ch08/echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch08/echo.c -------------------------------------------------------------------------------- /Ch08/echo_eof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch08/echo_eof.c -------------------------------------------------------------------------------- /Ch08/file_eof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch08/file_eof.c -------------------------------------------------------------------------------- /Ch08/guess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch08/guess.c -------------------------------------------------------------------------------- /Ch08/menuette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch08/menuette.c -------------------------------------------------------------------------------- /Ch08/newguess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch08/newguess.c -------------------------------------------------------------------------------- /Ch08/showchar1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch08/showchar1.c -------------------------------------------------------------------------------- /Ch08/showchar2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch08/showchar2.c -------------------------------------------------------------------------------- /Ch09/binary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch09/binary.c -------------------------------------------------------------------------------- /Ch09/factor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch09/factor.c -------------------------------------------------------------------------------- /Ch09/hotel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch09/hotel.c -------------------------------------------------------------------------------- /Ch09/hotel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch09/hotel.h -------------------------------------------------------------------------------- /Ch09/lesser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch09/lesser.c -------------------------------------------------------------------------------- /Ch09/lethead1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch09/lethead1.c -------------------------------------------------------------------------------- /Ch09/lethead2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch09/lethead2.c -------------------------------------------------------------------------------- /Ch09/loccheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch09/loccheck.c -------------------------------------------------------------------------------- /Ch09/misuse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch09/misuse.c -------------------------------------------------------------------------------- /Ch09/proto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch09/proto.c -------------------------------------------------------------------------------- /Ch09/recur.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch09/recur.c -------------------------------------------------------------------------------- /Ch09/swap1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch09/swap1.c -------------------------------------------------------------------------------- /Ch09/swap2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch09/swap2.c -------------------------------------------------------------------------------- /Ch09/usehotel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch09/usehotel.c -------------------------------------------------------------------------------- /Ch10/arf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch10/arf.c -------------------------------------------------------------------------------- /Ch10/array2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch10/array2d.c -------------------------------------------------------------------------------- /Ch10/bounds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch10/bounds.c -------------------------------------------------------------------------------- /Ch10/day_mon1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch10/day_mon1.c -------------------------------------------------------------------------------- /Ch10/day_mon2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch10/day_mon2.c -------------------------------------------------------------------------------- /Ch10/day_mon3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch10/day_mon3.c -------------------------------------------------------------------------------- /Ch10/designate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch10/designate.c -------------------------------------------------------------------------------- /Ch10/flc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch10/flc.c -------------------------------------------------------------------------------- /Ch10/no_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch10/no_data.c -------------------------------------------------------------------------------- /Ch10/order.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch10/order.c -------------------------------------------------------------------------------- /Ch10/pnt_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch10/pnt_add.c -------------------------------------------------------------------------------- /Ch10/ptr_ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch10/ptr_ops.c -------------------------------------------------------------------------------- /Ch10/rain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch10/rain.c -------------------------------------------------------------------------------- /Ch10/some_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch10/some_data.c -------------------------------------------------------------------------------- /Ch10/sum_arr1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch10/sum_arr1.c -------------------------------------------------------------------------------- /Ch10/sum_arr2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch10/sum_arr2.c -------------------------------------------------------------------------------- /Ch10/vararr2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch10/vararr2d.c -------------------------------------------------------------------------------- /Ch10/zippo1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch10/zippo1.c -------------------------------------------------------------------------------- /Ch10/zippo2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch10/zippo2.c -------------------------------------------------------------------------------- /Ch11/addresses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch11/addresses.c -------------------------------------------------------------------------------- /Ch11/arrchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch11/arrchar.c -------------------------------------------------------------------------------- /Ch11/compare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch11/compare.c -------------------------------------------------------------------------------- /Ch11/compback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch11/compback.c -------------------------------------------------------------------------------- /Ch11/copy1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch11/copy1.c -------------------------------------------------------------------------------- /Ch11/copy2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch11/copy2.c -------------------------------------------------------------------------------- /Ch11/copy3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch11/copy3.c -------------------------------------------------------------------------------- /Ch11/fgets1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch11/fgets1.c -------------------------------------------------------------------------------- /Ch11/fgets2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch11/fgets2.c -------------------------------------------------------------------------------- /Ch11/fgets3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch11/fgets3.c -------------------------------------------------------------------------------- /Ch11/format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch11/format.c -------------------------------------------------------------------------------- /Ch11/getsputs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch11/getsputs.c -------------------------------------------------------------------------------- /Ch11/join_chk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch11/join_chk.c -------------------------------------------------------------------------------- /Ch11/mod_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch11/mod_str.c -------------------------------------------------------------------------------- /Ch11/name1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch11/name1.c -------------------------------------------------------------------------------- /Ch11/nogo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch11/nogo.c -------------------------------------------------------------------------------- /Ch11/nono.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch11/nono.c -------------------------------------------------------------------------------- /Ch11/p_and_s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch11/p_and_s.c -------------------------------------------------------------------------------- /Ch11/put_out.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch11/put_out.c -------------------------------------------------------------------------------- /Ch11/put_put.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch11/put_put.c -------------------------------------------------------------------------------- /Ch11/quit_chk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch11/quit_chk.c -------------------------------------------------------------------------------- /Ch11/repeat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch11/repeat.c -------------------------------------------------------------------------------- /Ch11/scan_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch11/scan_str.c -------------------------------------------------------------------------------- /Ch11/sort_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch11/sort_str.c -------------------------------------------------------------------------------- /Ch11/starsrch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch11/starsrch.c -------------------------------------------------------------------------------- /Ch11/str_cat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch11/str_cat.c -------------------------------------------------------------------------------- /Ch11/strcnvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch11/strcnvt.c -------------------------------------------------------------------------------- /Ch11/strings1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch11/strings1.c -------------------------------------------------------------------------------- /Ch11/strptr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch11/strptr.c -------------------------------------------------------------------------------- /Ch11/test_fit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch11/test_fit.c -------------------------------------------------------------------------------- /Ch12/diceroll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch12/diceroll.c -------------------------------------------------------------------------------- /Ch12/diceroll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch12/diceroll.h -------------------------------------------------------------------------------- /Ch12/dyn_arr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch12/dyn_arr.c -------------------------------------------------------------------------------- /Ch12/forc99.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch12/forc99.c -------------------------------------------------------------------------------- /Ch12/global.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch12/global.c -------------------------------------------------------------------------------- /Ch12/hiding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch12/hiding.c -------------------------------------------------------------------------------- /Ch12/loc_stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch12/loc_stat.c -------------------------------------------------------------------------------- /Ch12/manydice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch12/manydice.c -------------------------------------------------------------------------------- /Ch12/parta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch12/parta.c -------------------------------------------------------------------------------- /Ch12/partb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch12/partb.c -------------------------------------------------------------------------------- /Ch12/r_drive0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch12/r_drive0.c -------------------------------------------------------------------------------- /Ch12/r_drive1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch12/r_drive1.c -------------------------------------------------------------------------------- /Ch12/rand0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch12/rand0.c -------------------------------------------------------------------------------- /Ch12/s_and_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch12/s_and_r.c -------------------------------------------------------------------------------- /Ch12/where.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch12/where.c -------------------------------------------------------------------------------- /Ch13/addaword.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch13/addaword.c -------------------------------------------------------------------------------- /Ch13/append.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch13/append.c -------------------------------------------------------------------------------- /Ch13/count.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch13/count.c -------------------------------------------------------------------------------- /Ch13/eddy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch13/eddy -------------------------------------------------------------------------------- /Ch13/randbin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch13/randbin.c -------------------------------------------------------------------------------- /Ch13/reducto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch13/reducto.c -------------------------------------------------------------------------------- /Ch13/reverse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch13/reverse.c -------------------------------------------------------------------------------- /Ch13/wordy: -------------------------------------------------------------------------------- 1 | The 2 | fabulous 3 | programmer 4 | enchanted 5 | the 6 | large 7 | -------------------------------------------------------------------------------- /Ch14/book.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch14/book.c -------------------------------------------------------------------------------- /Ch14/booksave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch14/booksave.c -------------------------------------------------------------------------------- /Ch14/complit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch14/complit.c -------------------------------------------------------------------------------- /Ch14/enum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch14/enum.c -------------------------------------------------------------------------------- /Ch14/flexmemb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch14/flexmemb.c -------------------------------------------------------------------------------- /Ch14/friend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch14/friend.c -------------------------------------------------------------------------------- /Ch14/friends.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch14/friends.c -------------------------------------------------------------------------------- /Ch14/funct_ptr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch14/funct_ptr.c -------------------------------------------------------------------------------- /Ch14/funds1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch14/funds1.c -------------------------------------------------------------------------------- /Ch14/funds2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch14/funds2.c -------------------------------------------------------------------------------- /Ch14/funds3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch14/funds3.c -------------------------------------------------------------------------------- /Ch14/funds4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch14/funds4.c -------------------------------------------------------------------------------- /Ch14/manybook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch14/manybook.c -------------------------------------------------------------------------------- /Ch14/names1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch14/names1.c -------------------------------------------------------------------------------- /Ch14/names2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch14/names2.c -------------------------------------------------------------------------------- /Ch14/names3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch14/names3.c -------------------------------------------------------------------------------- /Ch15/align.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch15/align.c -------------------------------------------------------------------------------- /Ch15/binbit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch15/binbit.c -------------------------------------------------------------------------------- /Ch15/dualview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch15/dualview.c -------------------------------------------------------------------------------- /Ch15/fields.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch15/fields.c -------------------------------------------------------------------------------- /Ch15/invert4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch15/invert4.c -------------------------------------------------------------------------------- /Ch16/assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch16/assert.c -------------------------------------------------------------------------------- /Ch16/byebye.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch16/byebye.c -------------------------------------------------------------------------------- /Ch16/doubleincl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch16/doubleincl.c -------------------------------------------------------------------------------- /Ch16/eatline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch16/eatline.h -------------------------------------------------------------------------------- /Ch16/el1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch16/el1.c -------------------------------------------------------------------------------- /Ch16/el2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch16/el2.c -------------------------------------------------------------------------------- /Ch16/file1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch16/file1.c -------------------------------------------------------------------------------- /Ch16/file2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch16/file2.c -------------------------------------------------------------------------------- /Ch16/file3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch16/file3.c -------------------------------------------------------------------------------- /Ch16/generic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch16/generic.c -------------------------------------------------------------------------------- /Ch16/glue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch16/glue.c -------------------------------------------------------------------------------- /Ch16/ifdef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch16/ifdef.c -------------------------------------------------------------------------------- /Ch16/mac_arg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch16/mac_arg.c -------------------------------------------------------------------------------- /Ch16/mems.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch16/mems.c -------------------------------------------------------------------------------- /Ch16/mytype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch16/mytype.c -------------------------------------------------------------------------------- /Ch16/names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch16/names.h -------------------------------------------------------------------------------- /Ch16/names_st.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch16/names_st.c -------------------------------------------------------------------------------- /Ch16/names_st.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch16/names_st.h -------------------------------------------------------------------------------- /Ch16/predef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch16/predef.c -------------------------------------------------------------------------------- /Ch16/preproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch16/preproc.c -------------------------------------------------------------------------------- /Ch16/qsorter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch16/qsorter.c -------------------------------------------------------------------------------- /Ch16/rect_pol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch16/rect_pol.c -------------------------------------------------------------------------------- /Ch16/statasrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch16/statasrt.c -------------------------------------------------------------------------------- /Ch16/subst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch16/subst.c -------------------------------------------------------------------------------- /Ch16/useheader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch16/useheader.c -------------------------------------------------------------------------------- /Ch16/varargs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch16/varargs.c -------------------------------------------------------------------------------- /Ch16/variadic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch16/variadic.c -------------------------------------------------------------------------------- /Ch17/films1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch17/films1.c -------------------------------------------------------------------------------- /Ch17/films2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch17/films2.c -------------------------------------------------------------------------------- /Ch17/films3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch17/films3.c -------------------------------------------------------------------------------- /Ch17/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch17/list.c -------------------------------------------------------------------------------- /Ch17/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch17/list.h -------------------------------------------------------------------------------- /Ch17/mall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch17/mall.c -------------------------------------------------------------------------------- /Ch17/petclub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch17/petclub.c -------------------------------------------------------------------------------- /Ch17/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch17/queue.c -------------------------------------------------------------------------------- /Ch17/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch17/queue.h -------------------------------------------------------------------------------- /Ch17/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch17/tree.c -------------------------------------------------------------------------------- /Ch17/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch17/tree.h -------------------------------------------------------------------------------- /Ch17/use_q.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Ch17/use_q.c -------------------------------------------------------------------------------- /Chapter01/inform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter01/inform.c -------------------------------------------------------------------------------- /Chapter01/listing1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter01/listing1.c -------------------------------------------------------------------------------- /Chapter01/listing2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter01/listing2.c -------------------------------------------------------------------------------- /Chapter02/fathm_ft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter02/fathm_ft.c -------------------------------------------------------------------------------- /Chapter02/first.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter02/first.c -------------------------------------------------------------------------------- /Chapter02/good.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter02/good.c -------------------------------------------------------------------------------- /Chapter02/nogood.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter02/nogood.c -------------------------------------------------------------------------------- /Chapter02/stillbad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter02/stillbad.c -------------------------------------------------------------------------------- /Chapter02/two_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter02/two_func.c -------------------------------------------------------------------------------- /Chapter03/altnames.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter03/altnames.c -------------------------------------------------------------------------------- /Chapter03/badcount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter03/badcount.c -------------------------------------------------------------------------------- /Chapter03/bases.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter03/bases.c -------------------------------------------------------------------------------- /Chapter03/charcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter03/charcode.c -------------------------------------------------------------------------------- /Chapter03/floaterr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter03/floaterr.c -------------------------------------------------------------------------------- /Chapter03/platinum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter03/platinum.c -------------------------------------------------------------------------------- /Chapter03/print1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter03/print1.c -------------------------------------------------------------------------------- /Chapter03/print2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter03/print2.c -------------------------------------------------------------------------------- /Chapter03/showf_pt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter03/showf_pt.c -------------------------------------------------------------------------------- /Chapter03/toobig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter03/toobig.c -------------------------------------------------------------------------------- /Chapter03/typesize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter03/typesize.c -------------------------------------------------------------------------------- /Chapter04/defines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter04/defines.c -------------------------------------------------------------------------------- /Chapter04/flags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter04/flags.c -------------------------------------------------------------------------------- /Chapter04/floatcnv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter04/floatcnv.c -------------------------------------------------------------------------------- /Chapter04/floats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter04/floats.c -------------------------------------------------------------------------------- /Chapter04/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter04/input.c -------------------------------------------------------------------------------- /Chapter04/intconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter04/intconv.c -------------------------------------------------------------------------------- /Chapter04/longstrg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter04/longstrg.c -------------------------------------------------------------------------------- /Chapter04/pizza.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter04/pizza.c -------------------------------------------------------------------------------- /Chapter04/praise1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter04/praise1.c -------------------------------------------------------------------------------- /Chapter04/praise2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter04/praise2.c -------------------------------------------------------------------------------- /Chapter04/printout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter04/printout.c -------------------------------------------------------------------------------- /Chapter04/prntval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter04/prntval.c -------------------------------------------------------------------------------- /Chapter04/skiptwo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter04/skiptwo.c -------------------------------------------------------------------------------- /Chapter04/stringf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter04/stringf.c -------------------------------------------------------------------------------- /Chapter04/talkback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter04/talkback.c -------------------------------------------------------------------------------- /Chapter04/varwid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter04/varwid.c -------------------------------------------------------------------------------- /Chapter04/width.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter04/width.c -------------------------------------------------------------------------------- /Chapter05/add_one.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter05/add_one.c -------------------------------------------------------------------------------- /Chapter05/addemup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter05/addemup.c -------------------------------------------------------------------------------- /Chapter05/bottles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter05/bottles.c -------------------------------------------------------------------------------- /Chapter05/convert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter05/convert.c -------------------------------------------------------------------------------- /Chapter05/divide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter05/divide.c -------------------------------------------------------------------------------- /Chapter05/golf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter05/golf.c -------------------------------------------------------------------------------- /Chapter05/min_sec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter05/min_sec.c -------------------------------------------------------------------------------- /Chapter05/post_pre.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter05/post_pre.c -------------------------------------------------------------------------------- /Chapter05/pound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter05/pound.c -------------------------------------------------------------------------------- /Chapter05/running.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter05/running.c -------------------------------------------------------------------------------- /Chapter05/shoes1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter05/shoes1.c -------------------------------------------------------------------------------- /Chapter05/shoes2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter05/shoes2.c -------------------------------------------------------------------------------- /Chapter05/sizeof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter05/sizeof.c -------------------------------------------------------------------------------- /Chapter05/squares.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter05/squares.c -------------------------------------------------------------------------------- /Chapter05/ules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter05/ules.c -------------------------------------------------------------------------------- /Chapter05/wheat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter05/wheat.c -------------------------------------------------------------------------------- /Chapter06/boolean.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter06/boolean.c -------------------------------------------------------------------------------- /Chapter06/cmpflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter06/cmpflt.c -------------------------------------------------------------------------------- /Chapter06/do_while.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter06/do_while.c -------------------------------------------------------------------------------- /Chapter06/entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter06/entry.c -------------------------------------------------------------------------------- /Chapter06/for_cube.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter06/for_cube.c -------------------------------------------------------------------------------- /Chapter06/postage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter06/postage.c -------------------------------------------------------------------------------- /Chapter06/power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter06/power.c -------------------------------------------------------------------------------- /Chapter06/rows1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter06/rows1.c -------------------------------------------------------------------------------- /Chapter06/rows2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter06/rows2.c -------------------------------------------------------------------------------- /Chapter06/scores_in.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter06/scores_in.c -------------------------------------------------------------------------------- /Chapter06/summing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter06/summing.c -------------------------------------------------------------------------------- /Chapter06/sweetie1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter06/sweetie1.c -------------------------------------------------------------------------------- /Chapter06/sweetie2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter06/sweetie2.c -------------------------------------------------------------------------------- /Chapter06/t_and_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter06/t_and_f.c -------------------------------------------------------------------------------- /Chapter06/trouble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter06/trouble.c -------------------------------------------------------------------------------- /Chapter06/truth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter06/truth.c -------------------------------------------------------------------------------- /Chapter06/when.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter06/when.c -------------------------------------------------------------------------------- /Chapter06/while1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter06/while1.c -------------------------------------------------------------------------------- /Chapter06/while2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter06/while2.c -------------------------------------------------------------------------------- /Chapter06/zeno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter06/zeno.c -------------------------------------------------------------------------------- /Chapter07/animals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter07/animals.c -------------------------------------------------------------------------------- /Chapter07/break.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter07/break.c -------------------------------------------------------------------------------- /Chapter07/chcount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter07/chcount.c -------------------------------------------------------------------------------- /Chapter07/colddays.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter07/colddays.c -------------------------------------------------------------------------------- /Chapter07/cypher1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter07/cypher1.c -------------------------------------------------------------------------------- /Chapter07/cypher2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter07/cypher2.c -------------------------------------------------------------------------------- /Chapter07/divisors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter07/divisors.c -------------------------------------------------------------------------------- /Chapter07/electric.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter07/electric.c -------------------------------------------------------------------------------- /Chapter07/paint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter07/paint.c -------------------------------------------------------------------------------- /Chapter07/skippart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter07/skippart.c -------------------------------------------------------------------------------- /Chapter07/vowels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter07/vowels.c -------------------------------------------------------------------------------- /Chapter07/wordcnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/Chapter07/wordcnt.c -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/README.md -------------------------------------------------------------------------------- /XB/complex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/XB/complex.c -------------------------------------------------------------------------------- /XB/complex0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/XB/complex0.c -------------------------------------------------------------------------------- /XB/def.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/XB/def.c -------------------------------------------------------------------------------- /XB/offset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/XB/offset.c -------------------------------------------------------------------------------- /XB/strrtok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/XB/strrtok.c -------------------------------------------------------------------------------- /XB/wider.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QTYResources/CPrimerPlus/HEAD/XB/wider.c --------------------------------------------------------------------------------