Hello.
I want to find size of a dynamically allocated array in my following code :
Code:
#include <iostream>
#include <cstdlib>

using namespace std;

int main()
{
        
        int *Set = NULL;
        int element;
        char Choice;
        int n = 0;
        
        do
        {       
                cout <<
...