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

Function printarray1

CPP/sorting/countingsort.cpp:30–35  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

28
29}
30void printarray1(int arr[],int n){
31 for(int i=0;i<n;i++){
32 cout<<arr[i]<<", ";
33 }
34 cout<<endl;
35}
36signed main(){
37 int arr[]={1,1,23,42,11,31,533,7432};
38 int n;

Callers 1

mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected