MCPcopy Create free account
hub / github.com/Lakhankumawat/LearnCPP / printArray

Function printArray

S-SortingAlgorithms/ShellSort.cpp:55–59  ·  view source on GitHub ↗

* Printing the array * Input: array to be printed, size of the array */

Source from the content-addressed store, hash-verified

53 * Input: array to be printed, size of the array
54*/
55void printArray(int arr[], int arraySize) {
56 for (int i = 0; i < arraySize; i++)
57 cout << arr[i] << " ";
58 cout << endl;
59}
60
61int main()
62{

Callers 1

mainFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected