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
- Host: GitHub
- URL: https://github.com/thatsabhishek/c-codes
- Owner: thatsabhishek
- Created: 2023-03-13T11:27:12.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-06-06T18:15:15.000Z (almost 2 years ago)
- Last Synced: 2025-03-25T17:21:12.435Z (2 months ago)
- Topics: c, coding, programming, sort, sorting
- Language: C
- Homepage:
- Size: 128 KB
- Stars: 7
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)