#include using namespace std; int main() { const int size; cin>>size; //impossible. this would rewrite size, //but size is a constant variable int arr[size]; return 0; }