├── README.md ├── chapter1 ├── checksum.c ├── findLongestLine.c ├── hello.c ├── readByLines.c └── rearrangeChars.c ├── chapter10 ├── autodealer.c ├── bitOperand.c └── telecom.c ├── chapter11 ├── dmaRead.c ├── dmaString.c ├── my_calloc.c └── simpleList.c ├── chapter12 ├── a.out ├── concordanceList.c ├── countLst-searchLst.c ├── removelist.c ├── reverseList.c └── rmvDoublyLst.c ├── chapter13 ├── parseCmd.c ├── sortAny.c ├── stdioStat.c └── switch2jtable.c ├── chapter14 ├── cpu_type.c └── print_versions.c ├── chapter15 ├── avgFamAge.c ├── cpyStdin2Stdout.c ├── cpyStdin2Stdout1.c ├── cpyStdin2Stdout2.c ├── cpyStdin2Stdout3.c ├── cpyStdin2Stdout4.c ├── f_checksum.c ├── hexDump.c ├── inventory.c ├── inventory.h ├── makefile ├── my_fgrep.c └── numPalindrome.c ├── chapter16 ├── baseAge.c ├── generic_insertion_sort.c ├── generic_swap.c ├── mortgagePay.c ├── telltime.c ├── tellweekday.c ├── tossDie.c └── windchill.c ├── chapter17 ├── arr_bst.c ├── arr_bst.h ├── arr_bst_main.c ├── dma_queue.c ├── dma_queue.h ├── dma_queue_main.c ├── dma_stack.c ├── dma_stack.h ├── dma_stack_main.c ├── generic_stack.h ├── isBst.c ├── llist_queue.c ├── llist_queue.h ├── llist_queue_main.c ├── llist_tree.c ├── llist_tree.h ├── llist_tree_main.c ├── makefile ├── makefile.copy ├── makefile.copy1 ├── multi_stack.c ├── multi_stack.h ├── multi_stack_main.c └── test_generic_stack.c ├── chapter2 └── threeFunctions │ ├── increment.c │ ├── increment.h │ ├── main.c │ ├── makefile │ ├── negate.c │ └── negate.h ├── chapter3 └── ptrPractice.c ├── chapter4 ├── adjacentLine.c ├── copyString.c ├── deblank.c ├── exSubstr.c ├── findPrime.c ├── squareRoot.c └── triangleType.c ├── chapter5 ├── c2lowercase.c ├── encryptLetter.c ├── implementArrBits.c ├── reverseBit.c └── store2bit.c ├── chapter6 ├── SieveEratoAlgorithm.c ├── deleteStr.c ├── reverseStr.c ├── searchString.c └── testPtr.c ├── chapter7 ├── ascii2int.c ├── binary2ascii.c ├── gcd.c ├── hermitePolynomial.c ├── implementPrintf │ ├── main.c │ ├── makefile │ ├── printf.c │ └── printf.h ├── maxlist.c └── writeAmount.c ├── chapter8 ├── arrayOffset.c ├── arrayOffset2.c ├── asgn2mulArray.c ├── eightQueensProb.c ├── idmatrix.c ├── idmatrix10.c ├── incomeTax.c └── matrixMult.c ├── chapter9 ├── categorizeChars.c ├── count_chars.c ├── decrypt.c ├── dollars.c ├── encrypt.c ├── my_strcat.c ├── my_strchr.c ├── my_strcpy.c ├── my_strcpy_end.c ├── my_strnchr.c ├── my_strnlen.c ├── palindrome.c ├── prepKey.c └── scanKW.c └── reading_note.txt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/README.md -------------------------------------------------------------------------------- /chapter1/checksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter1/checksum.c -------------------------------------------------------------------------------- /chapter1/findLongestLine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter1/findLongestLine.c -------------------------------------------------------------------------------- /chapter1/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter1/hello.c -------------------------------------------------------------------------------- /chapter1/readByLines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter1/readByLines.c -------------------------------------------------------------------------------- /chapter1/rearrangeChars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter1/rearrangeChars.c -------------------------------------------------------------------------------- /chapter10/autodealer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter10/autodealer.c -------------------------------------------------------------------------------- /chapter10/bitOperand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter10/bitOperand.c -------------------------------------------------------------------------------- /chapter10/telecom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter10/telecom.c -------------------------------------------------------------------------------- /chapter11/dmaRead.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter11/dmaRead.c -------------------------------------------------------------------------------- /chapter11/dmaString.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter11/dmaString.c -------------------------------------------------------------------------------- /chapter11/my_calloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter11/my_calloc.c -------------------------------------------------------------------------------- /chapter11/simpleList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter11/simpleList.c -------------------------------------------------------------------------------- /chapter12/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter12/a.out -------------------------------------------------------------------------------- /chapter12/concordanceList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter12/concordanceList.c -------------------------------------------------------------------------------- /chapter12/countLst-searchLst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter12/countLst-searchLst.c -------------------------------------------------------------------------------- /chapter12/removelist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter12/removelist.c -------------------------------------------------------------------------------- /chapter12/reverseList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter12/reverseList.c -------------------------------------------------------------------------------- /chapter12/rmvDoublyLst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter12/rmvDoublyLst.c -------------------------------------------------------------------------------- /chapter13/parseCmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter13/parseCmd.c -------------------------------------------------------------------------------- /chapter13/sortAny.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter13/sortAny.c -------------------------------------------------------------------------------- /chapter13/stdioStat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter13/stdioStat.c -------------------------------------------------------------------------------- /chapter13/switch2jtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter13/switch2jtable.c -------------------------------------------------------------------------------- /chapter14/cpu_type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter14/cpu_type.c -------------------------------------------------------------------------------- /chapter14/print_versions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter14/print_versions.c -------------------------------------------------------------------------------- /chapter15/avgFamAge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter15/avgFamAge.c -------------------------------------------------------------------------------- /chapter15/cpyStdin2Stdout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter15/cpyStdin2Stdout.c -------------------------------------------------------------------------------- /chapter15/cpyStdin2Stdout1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter15/cpyStdin2Stdout1.c -------------------------------------------------------------------------------- /chapter15/cpyStdin2Stdout2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter15/cpyStdin2Stdout2.c -------------------------------------------------------------------------------- /chapter15/cpyStdin2Stdout3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter15/cpyStdin2Stdout3.c -------------------------------------------------------------------------------- /chapter15/cpyStdin2Stdout4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter15/cpyStdin2Stdout4.c -------------------------------------------------------------------------------- /chapter15/f_checksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter15/f_checksum.c -------------------------------------------------------------------------------- /chapter15/hexDump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter15/hexDump.c -------------------------------------------------------------------------------- /chapter15/inventory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter15/inventory.c -------------------------------------------------------------------------------- /chapter15/inventory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter15/inventory.h -------------------------------------------------------------------------------- /chapter15/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter15/makefile -------------------------------------------------------------------------------- /chapter15/my_fgrep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter15/my_fgrep.c -------------------------------------------------------------------------------- /chapter15/numPalindrome.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter15/numPalindrome.c -------------------------------------------------------------------------------- /chapter16/baseAge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter16/baseAge.c -------------------------------------------------------------------------------- /chapter16/generic_insertion_sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter16/generic_insertion_sort.c -------------------------------------------------------------------------------- /chapter16/generic_swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter16/generic_swap.c -------------------------------------------------------------------------------- /chapter16/mortgagePay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter16/mortgagePay.c -------------------------------------------------------------------------------- /chapter16/telltime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter16/telltime.c -------------------------------------------------------------------------------- /chapter16/tellweekday.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter16/tellweekday.c -------------------------------------------------------------------------------- /chapter16/tossDie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter16/tossDie.c -------------------------------------------------------------------------------- /chapter16/windchill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter16/windchill.c -------------------------------------------------------------------------------- /chapter17/arr_bst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter17/arr_bst.c -------------------------------------------------------------------------------- /chapter17/arr_bst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter17/arr_bst.h -------------------------------------------------------------------------------- /chapter17/arr_bst_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter17/arr_bst_main.c -------------------------------------------------------------------------------- /chapter17/dma_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter17/dma_queue.c -------------------------------------------------------------------------------- /chapter17/dma_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter17/dma_queue.h -------------------------------------------------------------------------------- /chapter17/dma_queue_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter17/dma_queue_main.c -------------------------------------------------------------------------------- /chapter17/dma_stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter17/dma_stack.c -------------------------------------------------------------------------------- /chapter17/dma_stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter17/dma_stack.h -------------------------------------------------------------------------------- /chapter17/dma_stack_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter17/dma_stack_main.c -------------------------------------------------------------------------------- /chapter17/generic_stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter17/generic_stack.h -------------------------------------------------------------------------------- /chapter17/isBst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter17/isBst.c -------------------------------------------------------------------------------- /chapter17/llist_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter17/llist_queue.c -------------------------------------------------------------------------------- /chapter17/llist_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter17/llist_queue.h -------------------------------------------------------------------------------- /chapter17/llist_queue_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter17/llist_queue_main.c -------------------------------------------------------------------------------- /chapter17/llist_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter17/llist_tree.c -------------------------------------------------------------------------------- /chapter17/llist_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter17/llist_tree.h -------------------------------------------------------------------------------- /chapter17/llist_tree_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter17/llist_tree_main.c -------------------------------------------------------------------------------- /chapter17/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter17/makefile -------------------------------------------------------------------------------- /chapter17/makefile.copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter17/makefile.copy -------------------------------------------------------------------------------- /chapter17/makefile.copy1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter17/makefile.copy1 -------------------------------------------------------------------------------- /chapter17/multi_stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter17/multi_stack.c -------------------------------------------------------------------------------- /chapter17/multi_stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter17/multi_stack.h -------------------------------------------------------------------------------- /chapter17/multi_stack_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter17/multi_stack_main.c -------------------------------------------------------------------------------- /chapter17/test_generic_stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter17/test_generic_stack.c -------------------------------------------------------------------------------- /chapter2/threeFunctions/increment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter2/threeFunctions/increment.c -------------------------------------------------------------------------------- /chapter2/threeFunctions/increment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter2/threeFunctions/increment.h -------------------------------------------------------------------------------- /chapter2/threeFunctions/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter2/threeFunctions/main.c -------------------------------------------------------------------------------- /chapter2/threeFunctions/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter2/threeFunctions/makefile -------------------------------------------------------------------------------- /chapter2/threeFunctions/negate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter2/threeFunctions/negate.c -------------------------------------------------------------------------------- /chapter2/threeFunctions/negate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter2/threeFunctions/negate.h -------------------------------------------------------------------------------- /chapter3/ptrPractice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter3/ptrPractice.c -------------------------------------------------------------------------------- /chapter4/adjacentLine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter4/adjacentLine.c -------------------------------------------------------------------------------- /chapter4/copyString.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter4/copyString.c -------------------------------------------------------------------------------- /chapter4/deblank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter4/deblank.c -------------------------------------------------------------------------------- /chapter4/exSubstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter4/exSubstr.c -------------------------------------------------------------------------------- /chapter4/findPrime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter4/findPrime.c -------------------------------------------------------------------------------- /chapter4/squareRoot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter4/squareRoot.c -------------------------------------------------------------------------------- /chapter4/triangleType.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter4/triangleType.c -------------------------------------------------------------------------------- /chapter5/c2lowercase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter5/c2lowercase.c -------------------------------------------------------------------------------- /chapter5/encryptLetter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter5/encryptLetter.c -------------------------------------------------------------------------------- /chapter5/implementArrBits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter5/implementArrBits.c -------------------------------------------------------------------------------- /chapter5/reverseBit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter5/reverseBit.c -------------------------------------------------------------------------------- /chapter5/store2bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter5/store2bit.c -------------------------------------------------------------------------------- /chapter6/SieveEratoAlgorithm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter6/SieveEratoAlgorithm.c -------------------------------------------------------------------------------- /chapter6/deleteStr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter6/deleteStr.c -------------------------------------------------------------------------------- /chapter6/reverseStr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter6/reverseStr.c -------------------------------------------------------------------------------- /chapter6/searchString.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter6/searchString.c -------------------------------------------------------------------------------- /chapter6/testPtr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter6/testPtr.c -------------------------------------------------------------------------------- /chapter7/ascii2int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter7/ascii2int.c -------------------------------------------------------------------------------- /chapter7/binary2ascii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter7/binary2ascii.c -------------------------------------------------------------------------------- /chapter7/gcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter7/gcd.c -------------------------------------------------------------------------------- /chapter7/hermitePolynomial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter7/hermitePolynomial.c -------------------------------------------------------------------------------- /chapter7/implementPrintf/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter7/implementPrintf/main.c -------------------------------------------------------------------------------- /chapter7/implementPrintf/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter7/implementPrintf/makefile -------------------------------------------------------------------------------- /chapter7/implementPrintf/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter7/implementPrintf/printf.c -------------------------------------------------------------------------------- /chapter7/implementPrintf/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter7/implementPrintf/printf.h -------------------------------------------------------------------------------- /chapter7/maxlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter7/maxlist.c -------------------------------------------------------------------------------- /chapter7/writeAmount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter7/writeAmount.c -------------------------------------------------------------------------------- /chapter8/arrayOffset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter8/arrayOffset.c -------------------------------------------------------------------------------- /chapter8/arrayOffset2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter8/arrayOffset2.c -------------------------------------------------------------------------------- /chapter8/asgn2mulArray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter8/asgn2mulArray.c -------------------------------------------------------------------------------- /chapter8/eightQueensProb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter8/eightQueensProb.c -------------------------------------------------------------------------------- /chapter8/idmatrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter8/idmatrix.c -------------------------------------------------------------------------------- /chapter8/idmatrix10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter8/idmatrix10.c -------------------------------------------------------------------------------- /chapter8/incomeTax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter8/incomeTax.c -------------------------------------------------------------------------------- /chapter8/matrixMult.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter8/matrixMult.c -------------------------------------------------------------------------------- /chapter9/categorizeChars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter9/categorizeChars.c -------------------------------------------------------------------------------- /chapter9/count_chars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter9/count_chars.c -------------------------------------------------------------------------------- /chapter9/decrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter9/decrypt.c -------------------------------------------------------------------------------- /chapter9/dollars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter9/dollars.c -------------------------------------------------------------------------------- /chapter9/encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter9/encrypt.c -------------------------------------------------------------------------------- /chapter9/my_strcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter9/my_strcat.c -------------------------------------------------------------------------------- /chapter9/my_strchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter9/my_strchr.c -------------------------------------------------------------------------------- /chapter9/my_strcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter9/my_strcpy.c -------------------------------------------------------------------------------- /chapter9/my_strcpy_end.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter9/my_strcpy_end.c -------------------------------------------------------------------------------- /chapter9/my_strnchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter9/my_strnchr.c -------------------------------------------------------------------------------- /chapter9/my_strnlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter9/my_strnlen.c -------------------------------------------------------------------------------- /chapter9/palindrome.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter9/palindrome.c -------------------------------------------------------------------------------- /chapter9/prepKey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter9/prepKey.c -------------------------------------------------------------------------------- /chapter9/scanKW.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/chapter9/scanKW.c -------------------------------------------------------------------------------- /reading_note.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragScorpio/Pointers-On-C-Solutions/HEAD/reading_note.txt --------------------------------------------------------------------------------