Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/codemistic/Data-Structures-and-Algorithms
/ Array
Method
Array
Arrays/18_Menu_Based_problem.cpp:14–19 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
12
13
public:
14
Array()
15
{
16
size=10;
17
length=0;
18
A=new int[size];
19
}
20
Array(int sz)
21
{
22
size=sz;
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected