├── .gitignore ├── LICENSE ├── README.md ├── factorial └── fact.c ├── hex ├── htoi.c └── itox.c ├── jmp └── jump.c ├── list └── list.c ├── ls └── ls.c ├── matrix ├── matrix.c ├── md1 ├── md2 ├── md3 ├── md4 └── md5 ├── palindrome └── palin.c ├── postfix └── postfix.c ├── prime ├── Prime.c └── primepairs.c ├── pythagoras └── pythag.c ├── sorting └── sorting.c └── string └── string.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankurp/C-Algorithms/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankurp/C-Algorithms/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankurp/C-Algorithms/HEAD/README.md -------------------------------------------------------------------------------- /factorial/fact.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankurp/C-Algorithms/HEAD/factorial/fact.c -------------------------------------------------------------------------------- /hex/htoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankurp/C-Algorithms/HEAD/hex/htoi.c -------------------------------------------------------------------------------- /hex/itox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankurp/C-Algorithms/HEAD/hex/itox.c -------------------------------------------------------------------------------- /jmp/jump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankurp/C-Algorithms/HEAD/jmp/jump.c -------------------------------------------------------------------------------- /list/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankurp/C-Algorithms/HEAD/list/list.c -------------------------------------------------------------------------------- /ls/ls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankurp/C-Algorithms/HEAD/ls/ls.c -------------------------------------------------------------------------------- /matrix/matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankurp/C-Algorithms/HEAD/matrix/matrix.c -------------------------------------------------------------------------------- /matrix/md1: -------------------------------------------------------------------------------- 1 | 2 | 3 2 3 | 2 -6 4 | 3 5 5 | 1 -1 6 | 7 | 8 | -------------------------------------------------------------------------------- /matrix/md2: -------------------------------------------------------------------------------- 1 | 2 | 2 4 3 | 4 -2 -4 -5 4 | -7 -3 6 7 5 | 6 | 7 | -------------------------------------------------------------------------------- /matrix/md3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankurp/C-Algorithms/HEAD/matrix/md3 -------------------------------------------------------------------------------- /matrix/md4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankurp/C-Algorithms/HEAD/matrix/md4 -------------------------------------------------------------------------------- /matrix/md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankurp/C-Algorithms/HEAD/matrix/md5 -------------------------------------------------------------------------------- /palindrome/palin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankurp/C-Algorithms/HEAD/palindrome/palin.c -------------------------------------------------------------------------------- /postfix/postfix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankurp/C-Algorithms/HEAD/postfix/postfix.c -------------------------------------------------------------------------------- /prime/Prime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankurp/C-Algorithms/HEAD/prime/Prime.c -------------------------------------------------------------------------------- /prime/primepairs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankurp/C-Algorithms/HEAD/prime/primepairs.c -------------------------------------------------------------------------------- /pythagoras/pythag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankurp/C-Algorithms/HEAD/pythagoras/pythag.c -------------------------------------------------------------------------------- /sorting/sorting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankurp/C-Algorithms/HEAD/sorting/sorting.c -------------------------------------------------------------------------------- /string/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankurp/C-Algorithms/HEAD/string/string.c --------------------------------------------------------------------------------