Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

Awesome Lists containing this project

README

        

Files:
libfiles: mylib.c mylib.h

Compile 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