I am trying to use an array that can change in length by the number in the command line. Arrays must be constant at the time of declaration. Can anyone help?
using namespace std;
int main (int argc, char *argv[])
{
int nulls=atoi(argv[2]);
int arry[nulls];
}