https://github.com/augustdanell/c-programs
Just a repo for maintaining and learning C.
https://github.com/augustdanell/c-programs
c datastructures pointers-and-arrays
Last synced: 8 months ago
JSON representation
Just a repo for maintaining and learning C.
- Host: GitHub
- URL: https://github.com/augustdanell/c-programs
- Owner: AugustDanell
- Created: 2021-08-04T14:43:36.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-08-15T14:02:12.000Z (over 4 years ago)
- Last Synced: 2025-04-12T20:53:44.046Z (8 months ago)
- Topics: c, datastructures, pointers-and-arrays
- Language: C
- Homepage:
- Size: 43 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# C-programs
Just a repo for maintaining and learning C. I have been repeating C by implementing different search algorithms and datastructures here. Specifically I have been using pointers and arrays quite a lot to that end. Unlike Python C is a programming language that allows the programmer to have more direct control, one has to allocate memory manually and one can make use of pointers and memory addresses. When solving problems from programming competitions it is, I found, not always the best to use something like Python due to the time limit imposed by the many programming problems. Sometimes C can then be much better, much faster, even when implementing the very same algorithm and as such I am here trying to get better at using C.