I am trying to do a selection sort using function called min().
This is my code:
#include <stdio.h>
#include <conio.h>
void main() {
    int i, temp, arr[20], n, loc;
    int min(int [], int, int);
    printf("Enter a range of the array");
    scanf("%d", &n);
    for (i = 0; i < n; i++) {
        printf("Enter elements");
        scanf("%d", arr[i]);
    }
    for (i = 0; i < n; i++) {
        loc = min(arr, i, n);
        temp = arr[i];
        arr[i] = arr[loc];
        arr[loc] = temp;
    }
    min(int arr[], int i, int n) {
        int j, loc, temp;
        for (j = i + 1; j < n; j++) {
            if (arr[i] > arr[j]) {
                temp = j;
            }
        }
        return (temp);
     }
     getch();
}
the compiler is giving one error when compiling. it saying:
Error SELECTIONSORT.C 22: Expression Syntax.
my line number 22 is min(int arr[],int i, int n) according to my compiler Turbo C++.
Please guide me where I am going wrong. Thanks for any help.
 
    