MCPcopy Create free account
hub / github.com/acm-clan/algorithm-stone / print_array

Function print_array

templates/quicksort.cpp:36–42  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

34}
35
36void print_array(int arr[], int size)
37{
38 int i;
39 for (i = 0; i < size; i++)
40 printf("%d ", arr[i]);
41 printf("\n");
42}
43
44int main()
45{

Callers 1

mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected