CLEANUP - Editorial

Brother u r trying to allocate a memory of a variable size n with all default values =0;
int a[n] ={0};
It is not allowed in C++.
So it’s due to this, it’s giving Runtime Error.