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

Function main

Sorting/Code/quickSort.cpp:49–61  ·  view source on GitHub ↗

{ Driver Code Starts.

Source from the content-addressed store, hash-verified

47
48// { Driver Code Starts.
49int main()
50{
51 int arr[1000],n,T,i;
52 scanf("%d",&T);
53 while(T--){
54 scanf("%d",&n);
55 for(i=0;i<n;i++)
56 scanf("%d",&arr[i]);
57 quickSort(arr, 0, n-1);
58 printArray(arr, n);
59 }
60 return 0;
61} // } Driver Code Ends

Callers

nothing calls this directly

Calls 2

quickSortFunction · 0.70
printArrayFunction · 0.70

Tested by

no test coverage detected