mirror of
https://github.moeyy.xyz/https://github.com/TheAlgorithms/C.git
synced 2023-10-11 15:56:24 +08:00
19 lines
296 B
Markdown
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
|