MCPcopy Create free account
hub / github.com/codemistic/Data-Structures-and-Algorithms / Array

Class Array

Arrays/04_Array_ADT.c:3–8  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1#include <stdio.h>
2#include<stdlib.h>
3struct Array
4{
5 int* A;
6 int size;
7 int length;
8};
9
10// fxn for display all the elements of the array
11

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected