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

Class Array

Arrays/14_Mergeing_2_Array.c:4–9  ·  view source on GitHub ↗

Merging 2 Arrays

Source from the content-addressed store, hash-verified

2#include<malloc.h>
3//Merging 2 Arrays
4struct Array
5{
6 int A[10];
7 int size;
8 int length;
9};
10void Display(struct Array arr)
11{
12 int i;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected