Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/atlas-2192/algorithm-exercise
Algorithm exericise
https://github.com/atlas-2192/algorithm-exercise
Last synced: 4 days ago
JSON representation
Algorithm exericise
- Host: GitHub
- URL: https://github.com/atlas-2192/algorithm-exercise
- Owner: atlas-2192
- Created: 2024-11-28T21:44:42.000Z (about 1 month ago)
- Default Branch: master
- Last Pushed: 2024-11-28T21:45:11.000Z (about 1 month ago)
- Last Synced: 2024-11-29T11:23:36.382Z (about 1 month ago)
- Language: C
- Size: 17.6 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
Files:
libfiles: mylib.c mylib.hCompile example:
1.Complile the lib
$ gcc -c mylib.c -o mylib.o
$ ar -rsv libmylib.a mylib.o
2.Compile the program:
$ gcc allsum.c -o allsum -L. -lmylib