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

Function printArray

CPP/sorting/quicksort.cpp:56–62  ·  view source on GitHub ↗

Function to print an array */

Source from the content-addressed store, hash-verified

54
55/* Function to print an array */
56void printArray(int arr[], int size)
57{
58 int i;
59 for (i = 0; i < size; i++)
60 cout << arr[i] << " ";
61 cout << endl;
62}
63
64// Driver Code
65int main()

Callers 1

mainFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected