0
How to let the user input the size of the array?
i always get an error when i do this on my program int size; int arr[size] ;
1 Answer
+ 1
Try dynamic allocation .. something like :
int *arr= new int[size];
https://code.sololearn.com/cUznXCtYeX8b/#cpp