Standard c++
Why int arr[n]; Works on Some Compilers but Is Still Wrong in Standard C++
Introduction
Many C++ learners face a confusing situation:They read that this code is not allowed in C++—
int n;
cin >> n;
int arr[n];
—but when they run it, it works perfect...
yesamitsingh.hashnode.dev2 min read