So here's my problem i'm writing a c++ code to basically randomly generate X amount of numbers between [0-100] and then create a 2D array with all the numbers found sorted by smallest->biggest and print out each number found and how many times they are found.
this is the code i've written but there is a problem with it whenever i print the array with the numbers and how many times each one is found no matter how many times one number is found it's the same for all of them how can i fix that
#include <random>
#include <functional> 
#include <iostream> 
using namespace std;
std::default_random_engine generator;
std::uniform_int_distribution<int> data_element_distribution(0, 100);
auto random_element = std::bind(data_element_distribution, generator);
int main()
{
    int size, i;
    int different_numbers;
    cout<<"Enter the size of the Linear List:";
    cin>>size;
    int LinearList[size], TempList[size];
    for (i=0; i < size; i++)
    {
        int data_element = random_element();    //Filling the Linear List with random numbers 
        LinearList[i]=data_element;
        TempList[i]=LinearList[i];
    }
    int j, temp;
    
    for(j=size;j>1;j--)
    {
        for ( i=1; i<j; i++)
        {
            if(TempList[i]<TempList[i-1])
            {
                temp=TempList[i];                   //Sorting numbers
                TempList[i]=TempList[i-1];
                TempList[i-1]=temp;
            }
        }
    }
    different_numbers=1;
    int numbers[size];
    int *Histogram;
    Histogram=new int[different_numbers,1];
    for (i=0;i<size-1;i++)
    {
        if(TempList[i]!=TempList[i+1])
        {                                               //Finding the Size of the Histogram
            numbers[different_numbers]=TempList[i];     //Counting how many Times each Number is found
            Histogram[different_numbers,1]=1;    
            different_numbers++;
        }   
        else
        {
            Histogram[different_numbers,1]++;
        }   
    }
 
    for(i=1;i<different_numbers;i++)
    {
        Histogram[i,0]=numbers[i];                      //Printing numbers and Times found
        cout<<Histogram[i,0];
        cout<<" Is found "<<Histogram[i,1]<<" times."<<endl;
    }
    return 0;
}
edit: thank you guys for your comments and help i'll give it a try you're all life savers Xd
