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

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