TheAlgorithms-C/data_structures/Array/README.md
Anup Kumar Panwar 444d4b11d5 Refactor
2018-10-08 21:18:35 +05:30

19 lines
296 B
Markdown

# 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