void quickSort(int a[],int s,int e){
    if(s>e){
        return;
    }
    int pivot = parti(a,s,e);
    cout<<"size "<<sizeof(a)<<endl;
When i am passing the array as argument to function, an array of size more than 4 is being treated as an array of size 4. why is it so?
 
     
    