Why passing an array of two elements to function execution takes the same time as passing an array of 2 million elements?
int execution (int arr_data[],int size);
This is a sample function prototype in C.
Why passing an array of two elements to function execution takes the same time as passing an array of 2 million elements?
int execution (int arr_data[],int size);
This is a sample function prototype in C.