mirror of
https://github.moeyy.xyz/https://github.com/TheAlgorithms/C.git
synced 2023-10-11 15:56:24 +08:00
.. | ||
CArray.c | ||
CArray.h | ||
CArrayTests.c | ||
README.md |
Array
Simple array of integers. With I/O functions, Sort Functions and Search Functions.
Structure
typedef struct CArray {
int *array;
int size;
} CArray;
Files
- CArray.c - Array Implementations
- CArray.h - Import for Usage
- CArrayTests.c - Usage Examples and tests