mirror of
https://github.com/TheAlgorithms/C.git
synced 2026-02-16 14:05:01 +00:00
296 B
296 B
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