MCPcopy Create free account
hub / github.com/chaharnishant11/CodeIn10DSA / printArray

Function printArray

Sorting/Homework/quickSort.cpp:7–13  ·  view source on GitHub ↗

Function to print an array */

Source from the content-addressed store, hash-verified

5
6/* Function to print an array */
7void printArray(int arr[], int size)
8{
9 int i;
10 for (i=0; i < size; i++)
11 printf("%d ", arr[i]);
12 printf("\n");
13}
14
15 // } Driver Code Ends
16//User function Template for C

Callers 1

mainFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected