mirror of
https://github.com/TheAlgorithms/C
synced 2024-11-22 13:31:21 +03: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