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

Function main

CPP/array-2d/find_max.cpp:15–24  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13 cout<<"maximum number is:"<<max[k];
14}
15int main(){
16 int arr[5],i;
17 cout<<"enter members of an array:"<<endl;
18 for(i=0;i<5;i++)
19 {
20 cin>>arr[i];
21 }
22 max(arr);
23 return 0;
24}

Callers

nothing calls this directly

Calls 1

maxFunction · 0.70

Tested by

no test coverage detected