An open API service indexing awesome lists of open source software.

https://github.com/thatsabhishek/c-codes

Collection of various C programs
https://github.com/thatsabhishek/c-codes

c coding programming sort sorting

Last synced: about 2 months ago
JSON representation

Collection of various C programs

Awesome Lists containing this project

README

        

# C-Codes
This repository is the collection of various types of cool programs written in the C++ language.

The list below contains links to the specific programs.

In case, the list becomes too big in the future you can use `cmd + f` or `ctrl + f` to find the program you might be looking for.

## List of Programs
- [Searching](./Searching)
- [Binary Search](./searching/binarysearch.c)
- [Linear Search](./searching/linearsearch.c)
- [Sorting](./sorting)
- [Bubble Sort](./sorting/bubblesort.c)
- [Insertion Sort](./sorting/Insertion_sort.c)
- [Merge Sort](./sorting/mergesort.c)
- [Ouick Sort](./sorting/Quick_sort.c)
- [Selection Sort](./sorting/selectionsort.c)
- [Other Programs](./otherprograms)
- [Armstrong number or not](./otherprograms/armstrongnumber.c)
- [GCD of 2 number](./otherprograms/gcd.c)
- [Factorial of a number](./otherprograms/factorial.c)
- [Fibonacci Series](./otherprograms/fibonacci.c)
- [Leap Year or not](./otherprograms/leapyear.c)
- [Multiplication of first n numbers](./otherprograms/multioffirstnnumbers.c)
- [Palindrome Number or not](./otherprograms/palindromenumber.c)
- [Prime number or not](./otherprograms/primenumber.c)
- [Prime numbers upto n](./otherprograms/primenumupton.c)
- [Sum of first n numbers](./otherprograms/sumoffirstnnumbers.c)