TheAlgorithms-C/data_structures/Array/README.md

19 lines
296 B
Markdown
Raw Normal View History

# Array
Simple array of integers. With I/O functions, Sort Functions and Search Functions.
## Structure
```C
typedef struct CArray {
int *array;
int size;
} CArray;
```
## Files
* CArray.c - Array Implementations
* CArray.h - Import for Usage
* CArrayTests.c - Usage Examples and tests