TheAlgorithms-C/data_structures/Array
nikki1228 6a120e19a1 Update CArrayTests.c (#418)
Update CArrayTests.c
2019-11-02 23:46:45 +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 Update CArrayTests.c (#418) 2019-11-02 23:46:45 +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